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 57bee02
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand All @@ -20,19 +20,17 @@ 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 }}
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 config --global user.name 'github-actions'
git config --global user.email 'github-actions@github.com'
git tag -a $TAG -m"Release $TAG"
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 57bee02

Please sign in to comment.