Skip to content

Commit 3bc4d38

Browse files
authored
Fix for version number
1 parent 54ed553 commit 3bc4d38

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ safetest:
2828
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test
2929

3030
publish: install-test-requirements
31-
VERSION := $(shell python -c 'import mocket; print(mocket.__version__)')
3231
pipenv run python -m build --sdist .
33-
pipenv run twine upload dist/mocket-$(VERSION).tar.gz
34-
pipenv run anaconda upload dist/mocket-$(VERSION).tar.gz
32+
pipenv run twine upload dist/mocket-$(shell python -c 'import mocket; print(mocket.__version__)').tar.gz
33+
pipenv run anaconda upload dist/mocket-$(shell python -c 'import mocket; print(mocket.__version__)').tar.gz
3534

3635
clean:
3736
rm -rf *.egg-info dist/

0 commit comments

Comments
 (0)