1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Author: Steffen Möller
Last-Update: 2021-01-26 18:22:43 +0100
Description: Use python3
Index: pokrok-0.2.0/Makefile
===================================================================
--- pokrok-0.2.0.orig/Makefile
+++ pokrok-0.2.0/Makefile
@@ -5,8 +5,8 @@ module = pokrok
repo = jdidion/$(module)
desc = Release $(version)
-BUILD = python setup.py build_ext -i && python setup.py install $(installargs)
-TEST = py.test $(pytestops) $(tests)
+BUILD = python3 setup.py build_ext -i && python3 setup.py install $(installargs)
+TEST = py.test-3 $(pytestops) $(tests)
all:
$(BUILD)
|