Skip to content

Commit d9d678c

Browse files
author
Matevz Morato
committed
Remove the source distribution for now
1 parent 261f926 commit d9d678c

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

bindings/python/ci/upload-pypi.sh

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ for file in wheelhouse/audited/*.whl; do
1111
python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
1212
done
1313

14-
# Uploads zip source distribution
15-
for file in wheelhouse/audited/*.zip; do
16-
echo "Uploading $file"
17-
python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
18-
done
14+
# TODO (Morato) - add the source distribution upload back
15+
# # Uploads zip source distribution
16+
# for file in wheelhouse/audited/*.zip; do
17+
# echo "Uploading $file"
18+
# python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
19+
# done
1920

20-
# Uploads tar.gz source distribution
21-
for file in wheelhouse/audited/*.tar.gz; do
22-
echo "Uploading $file"
23-
python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
24-
done
21+
# # Uploads tar.gz source distribution
22+
# for file in wheelhouse/audited/*.tar.gz; do
23+
# echo "Uploading $file"
24+
# python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
25+
# done

0 commit comments

Comments
 (0)