We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84d76ca commit c0f8537Copy full SHA for c0f8537
.circleci/config.yml
@@ -58,6 +58,9 @@ jobs:
58
image: ubuntu-1604:201903-01
59
steps:
60
- checkout
61
+ - run:
62
+ name: sdist
63
+ command: python setup.py sdist
64
- python/load-cache:
65
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
66
dependency-file: requirements_dev.txt
@@ -87,7 +90,8 @@ jobs:
87
90
./ci/travis/build-manylinux.sh
88
91
- run:
89
92
name: Upload Wheels
- command: twine upload --skip-existing -u $PYPI_USER -p $PYPI_PASSWORD wheelhouse/*
93
+ command: |
94
+ twine upload --skip-existing -u $PYPI_USER -p $PYPI_PASSWORD dist/* wheelhouse/*
95
workflows:
96
version: 2.1
97
main:
0 commit comments