Skip to content

Commit c0f8537

Browse files
authored
Added sdist upload (#13)
1 parent 84d76ca commit c0f8537

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: .circleci/config.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ jobs:
5858
image: ubuntu-1604:201903-01
5959
steps:
6060
- checkout
61+
- run:
62+
name: sdist
63+
command: python setup.py sdist
6164
- python/load-cache:
6265
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
6366
dependency-file: requirements_dev.txt
@@ -87,7 +90,8 @@ jobs:
8790
./ci/travis/build-manylinux.sh
8891
- run:
8992
name: Upload Wheels
90-
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/*
9195
workflows:
9296
version: 2.1
9397
main:

0 commit comments

Comments
 (0)