Skip to content

Commit

Permalink
0.13.5: rename wrappers module into iterators
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Jul 1, 2024
1 parent c9f8cdb commit a517dc6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,20 @@ jobs:
run: |
python3 -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_token }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
# - name: Build and publish
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.pypi_token }}
# run: |
# python setup.py sdist bdist_wheel
# twine upload dist/*
- name: Tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
TAG=$(python -c 'from version import __version__; print(__version__)' | sed 's/^/v/')
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a $TAG -m"Release $TAG"
git remote set-url --push origin https://github-actions[bot]:[email protected]/streamable
git push origin $TAG
2 changes: 1 addition & 1 deletion streamable/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
cast,
)

from streamable.wrappers import (
from streamable.iterators import (
AsyncConcurrentMappingIterable,
CatchingIterator,
ConcurrentFlatteningIterable,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.13.2"
__version__ = "0.13.5"

0 comments on commit a517dc6

Please sign in to comment.