From 7a275179dc38408fb6afe2340a7175e3b35ea58a Mon Sep 17 00:00:00 2001 From: Lenny Truong Date: Fri, 11 Aug 2023 12:01:24 -0700 Subject: [PATCH] Only upload tar --- .travis/deploy.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis/deploy.sh b/.travis/deploy.sh index 61dffe490..657b3942c 100755 --- a/.travis/deploy.sh +++ b/.travis/deploy.sh @@ -1,9 +1,8 @@ #!/usr/bin/env bash export PATH=$TRAVIS_BUILD_DIR/miniconda/bin:$PATH -source activate test-env pip install twine python setup.py sdist -twine upload dist/* -u leonardt -p $PYPI_PASSWORD +twine upload dist/*.tar.gz -u leonardt -p $PYPI_PASSWORD