We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4a202 commit 9c73850Copy full SHA for 9c73850
Makefile
@@ -188,14 +188,14 @@ release-test: FORCE
188
./release-test.sh
189
190
release:
191
- git tag ${VERSION}
+ export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SCHEMA_SALAD=${VERSION}
192
193
. testenv2/bin/activate && \
194
python testenv2/src/${PACKAGE}/setup.py sdist bdist_wheel
195
196
pip install twine && \
197
twine upload testenv2/src/${PACKAGE}/dist/* && \
198
- git push --tags
+ git tag ${VERSION} && git push --tags
199
200
flake8: $(PYSOURCES)
201
flake8 $^
0 commit comments