Skip to content

Commit

Permalink
fixes pypi upload script
Browse files Browse the repository at this point in the history
  • Loading branch information
cyriac committed Nov 6, 2017
1 parent 29641bb commit f631c21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
install_reqs = parse_requirements('requirements.txt', session=PipSession())
reqs = [str(ir.req) for ir in install_reqs]
sys.path.insert(0, os.path.dirname(__file__))
version = '1.1'
version = '1.2.1'
setup(
name='cappy',
version=version,
Expand Down
4 changes: 3 additions & 1 deletion upload.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
pandoc --from=markdown --to=rst --output=README.txt README.md
python setup.py sdist upload -r pypi
rm -rf dist build
python setup.py sdist bdist_wheel
twine upload -r pypi dist/*

0 comments on commit f631c21

Please sign in to comment.