We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
3 parents cc6fcbe + 0a4485d + 48b87b6 commit 61ddd79Copy full SHA for 61ddd79
Makefile
@@ -173,6 +173,13 @@ release: setup
173
$(UV) run python setup.py clean sdist bdist_wheel
174
$(TWINE) upload dist/$(subst -,_,$(PYPI_PROJECT))-$(VERSION)*
175
176
+.PHONY: release
177
+release:
178
+ @git commit -a -m "[Release] $(PROJECT): $(VERSION)"
179
+ git tag $(VERSION)
180
+ git push --all
181
+ $(PYTHON) setup.py clean sdist register upload
182
+
183
.PHONY: install
184
install:
185
@for file in $(SOURCES_BIN); do
setup.py
@@ -2,7 +2,7 @@
2
import os
3
import sys
4
5
-VERSION = "1.0.2"
+VERSION = "1.0.3"
6
# Try to import mypyc, make it optional
7
try:
8
from mypyc.build import mypycify
0 commit comments