Skip to content

Commit d453d99

Browse files
committed
Merge branch 'dev'
2 parents 623ec86 + 06899f6 commit d453d99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
WORKDIR ?= $(CURDIR)
22
BUILDDIR = $(WORKDIR)/build/mamonsu-$(VERSION)
3-
VERSION = $(shell python -c 'import mamonsu; print(mamonsu.__version__)')
3+
VERSION = $(shell python3 -c 'import mamonsu; print(mamonsu.__version__)')
44

55
all:
66
pip install --upgrade --editable .
77

88
publish: clean test
99
grep ^Version ./packaging/rpm/SPECS/mamonsu.spec | grep $(VERSION)
1010
grep ^mamonsu ./packaging/debian/changelog | grep $(VERSION)
11-
python setup.py register -r pypi
12-
python setup.py sdist upload -r pypi
11+
python3 setup.py register -r pypi
12+
python3 setup.py sdist upload -r pypi
1313
git push
1414
git tag $(VERSION)
1515
git push --tags

0 commit comments

Comments
 (0)