Skip to content

Commit 61fcbf0

Browse files
authored
Stop marking wheels as "universal". (#107)
We no longer support Python 2.
1 parent 4c66229 commit 61fcbf0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

continuous-delivery/publish_to_prod_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ phases:
1616
- sed --in-place -E "s/version='.+'/version='${PKG_VERSION}'/" setup.py
1717
build:
1818
commands:
19-
- echo Build started on `date`
20-
- python3 setup.py sdist bdist_wheel --universal
19+
- echo Build started on `date`
20+
- python3 setup.py sdist bdist_wheel
2121
- python3 -m twine upload -r pypi dist/*
2222
post_build:
2323
commands:

continuous-delivery/publish_to_test_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ phases:
1616
- sed --in-place -E "s/version='.+'/version='${PKG_VERSION}'/" setup.py
1717
build:
1818
commands:
19-
- echo Build started on `date`
20-
- python3 setup.py sdist bdist_wheel --universal
19+
- echo Build started on `date`
20+
- python3 setup.py sdist bdist_wheel
2121
- python3 -m twine upload -r testpypi dist/*
2222
post_build:
2323
commands:

0 commit comments

Comments
 (0)