Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: Update release instructions / recipe #78

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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