We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c8dda commit e7fc54aCopy full SHA for e7fc54a
Makefile
@@ -201,14 +201,15 @@ release-test: check-python3 FORCE
201
git diff-index --quiet HEAD -- || ( echo You have uncommitted changes, please commit them and try again; false )
202
./release-test.sh
203
204
-release: release-test
205
- git tag ${VERSION}
+release:
+ export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CWLTOOL=${VERSION} && \
206
+ ./release-test.sh && \
207
. testenv2/bin/activate && \
208
pip install build && \
209
python -m build testenv2/src/${MODULE} && \
210
pip install twine && \
211
twine upload testenv2/src/${MODULE}/dist/* && \
- git push --tags
212
+ git tag ${VERSION} && git push --tags
213
214
flake8: $(PYSOURCES)
215
flake8 $^
0 commit comments