Skip to content

Commit

Permalink
release: set version via SCM variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Oct 16, 2023
1 parent b0c8dda commit e7fc54a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,15 @@ release-test: check-python3 FORCE
git diff-index --quiet HEAD -- || ( echo You have uncommitted changes, please commit them and try again; false )
./release-test.sh

release: release-test
git tag ${VERSION}
release:
export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CWLTOOL=${VERSION} && \
./release-test.sh && \
. testenv2/bin/activate && \
pip install build && \
python -m build testenv2/src/${MODULE} && \
pip install twine && \
twine upload testenv2/src/${MODULE}/dist/* && \
git push --tags
git tag ${VERSION} && git push --tags

flake8: $(PYSOURCES)
flake8 $^
Expand Down

0 comments on commit e7fc54a

Please sign in to comment.