Skip to content

Commit

Permalink
Merge pull request #1566 from joshuagl/joshuagl/no-universal
Browse files Browse the repository at this point in the history
Don't build universal wheels
  • Loading branch information
joshuagl committed Sep 6, 2021
2 parents 62195fd + 60925f0 commit 1ce2c35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/RELEASE.md
Expand Up @@ -10,7 +10,7 @@
(ensure commands invoking `python` below are using Python 3)
* Remove existing dist build dirs
* Create source dist `python3 setup.py sdist`
* Create wheel (with 2 and 3 support) `python3 setup.py bdist_wheel --universal`
* Create wheel `python3 setup.py bdist_wheel`
* Sign the dists `gpg --detach-sign -a dist/tuf-vA.B.C.tar.gz`
* Upload to test PyPI `twine upload --repository testpypi dist/*`
* Verify the uploaded package https://testpypi.python.org/pypi/tuf/
Expand All @@ -25,9 +25,9 @@
(ensure commands invoking `python` below are using Python 3)
* Remove existing dist build dirs
* Create source dist `python3 setup.py sdist`
* Create wheel (with 2 and 3 support) `python3 setup.py bdist_wheel --universal`
* Create wheel `python3 setup.py bdist_wheel`
* Sign source dist `gpg --detach-sign -a dist/tuf-vA.B.C.tar.gz`
* Sign wheel `gpg --detach-sign -a dist/tuf-vA.B.C-py2.py3-none-any.whl`
* Sign wheel `gpg --detach-sign -a dist/tuf-vA.B.C-py3-none-any.whl`
* Upload to test PyPI `twine upload --repository testpypi dist/*`
* Verify the uploaded package https://testpypi.python.org/pypi/tuf/
* Upload to PyPI `twine upload dist/*`
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
@@ -1,6 +1,3 @@
[wheel]
universal = 1

[check-manifest]
ignore =
requirements-dev.txt
Expand Down

0 comments on commit 1ce2c35

Please sign in to comment.