We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd9af5 commit ea11aa0Copy full SHA for ea11aa0
Makefile
@@ -42,9 +42,9 @@ build: $(ENV)/bin/wheel
42
43
# Verify that the python version matches the git tag so we don't push bad shas
44
.PHONY: verify-tag-version
45
-verify-tag-version:
+verify-tag-version: $(ENV)/bin/wheel
46
$(eval TAG_NAME = $(shell [ -n "$(DRONE_TAG)" ] && echo $(DRONE_TAG) || git describe --tags --exact-match))
47
- test "v$(shell python setup.py -V)" = "$(TAG_NAME)"
+ test "v$(shell $(ENV)/bin/python setup.py -V)" = "$(TAG_NAME)"
48
49
# Uses twine to upload to pypi
50
.PHONY: upload
0 commit comments