Skip to content

Commit

Permalink
Refactor release commands to use poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
pamella committed May 27, 2024
1 parent 5f96c76 commit d9036d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ selfcheck: ## check that the Makefile is well-formed
@echo "The Makefile is well-formed."

release: clean ## package and upload a release
python setup.py sdist
python setup.py bdist_wheel
twine upload dist/*
poetry build
poetry run twine check dist/*
poetry run twine upload dist/*

sdist: clean ## package
python setup.py sdist
poetry build
ls -l dist

0 comments on commit d9036d4

Please sign in to comment.