Skip to content

Commit 9b0df83

Browse files
committed
Changed to tar.gz sdist
1 parent 91d4326 commit 9b0df83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
run: echo '::set-env name=BUILD_COMMIT_HASH::${{github.sha}}'
115115
- name: Building a source distribution
116116
run: |
117-
/opt/python/cp38-cp38/bin/python3.8 setup.py sdist --formats=bztar,zip
117+
/opt/python/cp38-cp38/bin/python3.8 setup.py sdist --formats=gztar,zip
118118
mv dist/* wheelhouse/audited/
119119
- name: Building wheels
120120
run: for PYBIN in /opt/python/cp3*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/; done

ci/upload-pypi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ for file in wheelhouse/audited/*.zip; do
1313
python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
1414
done
1515

16-
# Uploads tar.bz2 source distribution
17-
for file in wheelhouse/audited/*.tar.bz2; do
16+
# Uploads tar.gz source distribution
17+
for file in wheelhouse/audited/*.tar.gz; do
1818
echo "Uploading $file"
1919
python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
2020
done

0 commit comments

Comments
 (0)