Skip to content

Commit

Permalink
Chore: Update release instructions / recipe
Browse files Browse the repository at this point in the history
It now uses the canonical `build` package for building both source-,
and binary wheel packages to be uploaded to PyPI.

-- https://pypi.org/project/build/
  • Loading branch information
amotl committed Jan 25, 2024
1 parent bfe942e commit c6e3056
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,16 @@ coverage: clean ## Check code coverage locally
open htmlcov/index.html

release: clean # Package and upload a release to PyPI
python setup.py sdist
python setup.py bdist_wheel
python -m build
twine check dist/*
twine upload --repository pypi dist/*
open https://pypi.python.org/pypi/python-epo-ops-client
open https://pypi.org/project/python-epo-ops-client/

release-test: clean # Package and upload a release to testpypi
python setup.py sdist
python setup.py bdist_wheel
python -m build
twine check dist/*
twine upload --repository testpypi dist/*
open https://testpypi.python.org/pypi/python-epo-ops-client
open https://test.pypi.org/project/python-epo-ops-client/

sdist: clean
python setup.py sdist
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
extras = {
"develop": [
"black<24",
"build<2",
"ruff==0.0.285; python_version >= '3.7'",
"twine<5",
"wheel<1",
Expand Down

0 comments on commit c6e3056

Please sign in to comment.