File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ name: Release to PyPI
22
33on :
44 push :
5- branches :
6- - release
75 tags :
86 - ' v*.*.*'
97jobs :
3432 . venv/bin/activate
3533 pip install twine
3634
37- - name : Build tarball
35+ - name : Build tarball and wheel
3836 run : |
3937 . venv/bin/activate
38+ pip install wheel
4039 python setup.py sdist bdist_wheel
4140
4241 - name : Upload tarball to PyPI
Original file line number Diff line number Diff line change 11# Unreleased
22
3- # 4.1.1 , 18 Jan 2021
3+ # 4.1.2 , 18 Jan 2021
44
55- Correctly pass boto3 resource to writers (PR [ #576 ] ( https://github.com/RaRe-Technologies/smart_open/pull/576 ) , [ @jackluo923 ] ( https://github.com/jackluo923 ) )
66- Improve robustness of S3 reading (PR [ #552 ] ( https://github.com/RaRe-Technologies/smart_open/pull/552 ) , [ @mpenkov ] ( https://github.com/mpenkov ) )
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ git push --tags upstream master
6767
6868git checkout develop
6969dev_version=" $version .dev0"
70- sed -i ' ' s/$( python smart_open/version.py) /$dev_version / smart_open/version.py
70+ sed --in-place= -e s/$( python smart_open/version.py) /$dev_version / smart_open/version.py
7171git commit smart_open/version.py -m " bump version to $dev_version "
7272git push upstream develop
7373
Original file line number Diff line number Diff line change 1- __version__ = '4.1.1 '
1+ __version__ = '4.1.2 '
22
33
44if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments