Skip to content

Commit

Permalink
support building and uploading wheels too (fixes #44)
Browse files Browse the repository at this point in the history
  • Loading branch information
esc committed Mar 9, 2018
1 parent 8dc0a57 commit c189f6f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1110,8 +1110,8 @@ Maintainers Notes on Cutting a Release
#. Push commits to own github ``git push esc master``
#. Push the tag to Blosc github ``git push blosc $VERSION``
#. Push the tag to own github ``git push esc $VERSION``
#. Make a source distribution using ``python setup.py sdist``
#. Upload to PyPi using ``twine upload dist/bloscpack-$VERSION.tar.gz`
#. Make a source distribution using ``python setup.py sdist bdist_wheel``
#. Upload to PyPi using ``twine upload dist/bloscpack-$VERSION*`
#. Bump version number to next dev version
#. Announce release on the Blosc list
#. Announce release via Twitter
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
'coverage',
'coveralls',
'twine',
'wheel',
]

setup(
Expand Down
1 change: 1 addition & 0 deletions test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ mock
coverage
coveralls
twine
wheel
unittest2; python_version == '2.6'
ordereddict; python_version =='2.6'
argparse; python_version =='2.6'

0 comments on commit c189f6f

Please sign in to comment.