We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa99926 commit 918849bCopy full SHA for 918849b
.travis.yml
@@ -75,16 +75,19 @@ matrix:
75
on:
76
tags: true
77
78
-
+ # Travis deploy: pypi settings started returning "Your build exited with 86."
79
+ # Reverting to manual build and upload
80
- stage: deploy to pypi
81
+ python: 3.6
82
+ install: pip install setuptools wheel twine
83
+ env:
84
+ - TWINE_USERNAME: "$PYPI_USERNAME"
85
+ - TWINE_PASSWORD: "$PYPI_PASSWORD"
86
script:
- -
- deploy:
- provider: pypi
- distributions: sdist bdist_wheel
- edge: true
- on:
87
- tags: true
+ - python setup.py sdist bdist_wheel
88
+ - python -m twine upload dist/*
89
+ on:
90
+ tags: true
91
92
93
install:
0 commit comments