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.
2 parents 623ec86 + 06899f6 commit d453d99Copy full SHA for d453d99
Makefile
@@ -1,15 +1,15 @@
1
WORKDIR ?= $(CURDIR)
2
BUILDDIR = $(WORKDIR)/build/mamonsu-$(VERSION)
3
-VERSION = $(shell python -c 'import mamonsu; print(mamonsu.__version__)')
+VERSION = $(shell python3 -c 'import mamonsu; print(mamonsu.__version__)')
4
5
all:
6
pip install --upgrade --editable .
7
8
publish: clean test
9
grep ^Version ./packaging/rpm/SPECS/mamonsu.spec | grep $(VERSION)
10
grep ^mamonsu ./packaging/debian/changelog | grep $(VERSION)
11
- python setup.py register -r pypi
12
- python setup.py sdist upload -r pypi
+ python3 setup.py register -r pypi
+ python3 setup.py sdist upload -r pypi
13
git push
14
git tag $(VERSION)
15
git push --tags
0 commit comments