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 fa583d5 commit 2e95412Copy full SHA for 2e95412
Makefile
@@ -30,4 +30,8 @@ kit: ## Make the source distribution.
30
python -m twine check dist/*
31
32
kit_upload: ## Upload the built distributions to PyPI.
33
- twine upload --verbose dist/*
+ python -m twine upload --verbose dist/*
34
+
35
+tag: ## Make a git tag with the version number
36
+ git tag -a -m "Version v$$(python setup.py --version)" v$$(python setup.py --version)
37
+ git push --all
howto.txt
@@ -11,5 +11,5 @@
11
- Kits:
12
$ make clean kit
13
$ make kit_upload
14
-- tag git
+ $ make tag
15
- make a new gh release: https://github.com/nedbat/django_coverage_plugin/releases/new
0 commit comments