Skip to content

Commit

Permalink
v3.0.10.post1
Browse files Browse the repository at this point in the history
I messed up Travis config, so v3.0.10 won't have source distribution
uploaded.
  • Loading branch information
zhuyifei1999 committed May 12, 2020
1 parent c983da9 commit ae77c45
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
install: skip
script: python3 setup.py sdist --formats=gztar
env:
- ACTION=cibuildwheel
- ACTION=cibuildwheel-source
- stage: deploy
name: Build and deploy Linux wheels
services: docker
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def doit():
long_description = f.read()

setup(name="guppy3",
version="3.0.10",
version="3.0.10.post1",
description="Guppy 3 -- Guppy-PE ported to Python 3",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
12 changes: 12 additions & 0 deletions travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,18 @@ cpychecker)
esac
;;

cibuildwheel-source)
case "$1" in
install)
;;
script)
;;
after_success)
pip install twine
TWINE_USERNAME=__token__ twine upload --skip-existing dist/*.tar.gz
;;
esac
;;
cibuildwheel)
case "$1" in
install)
Expand Down

0 comments on commit ae77c45

Please sign in to comment.