From 5d01b627306b44f605c79350e44f819f3307cfca Mon Sep 17 00:00:00 2001 From: Nicholas Gates Date: Fri, 17 Jan 2020 15:02:08 +0000 Subject: [PATCH] Upload wheels first to try to get pypi to detect deps (#731) --- scripts/circle/pypi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/circle/pypi.sh b/scripts/circle/pypi.sh index ed70640d..d0eae1be 100755 --- a/scripts/circle/pypi.sh +++ b/scripts/circle/pypi.sh @@ -14,4 +14,4 @@ echo "repository=https://$PYPI_HOST" >> ~/.pypirc echo "username=$PYPI_USERNAME" >> ~/.pypirc echo "password=$PYPI_PASSWORD" >> ~/.pypirc -python setup.py sdist bdist_wheel upload -r pypi-private +python setup.py bdist_wheel sdist upload -r pypi-private