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 54ed553 commit 3bc4d38Copy full SHA for 3bc4d38
Makefile
@@ -28,10 +28,9 @@ safetest:
28
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test
29
30
publish: install-test-requirements
31
- VERSION := $(shell python -c 'import mocket; print(mocket.__version__)')
32
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
+ pipenv run twine upload dist/mocket-$(shell python -c 'import mocket; print(mocket.__version__)').tar.gz
+ pipenv run anaconda upload dist/mocket-$(shell python -c 'import mocket; print(mocket.__version__)').tar.gz
35
36
clean:
37
rm -rf *.egg-info dist/
0 commit comments