Skip to content

Commit 4825dcf

Browse files
committed
Makefile uses python3
1 parent a306616 commit 4825dcf

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
@@ -3,16 +3,16 @@ all: README README.org
33
# a multiple-target pattern rule means that a single invocation of the command
44
# builds all the targets, which is what I want here
55
%EADME %EADME.org: gnuplotlib.py README.footer.org extract_README.py
6-
python extract_README.py gnuplotlib
6+
python3 extract_README.py gnuplotlib
77

88
# make distribution tarball
99
dist:
10-
python setup.py sdist
10+
python3 setup.py sdist
1111
.PHONY: dist
1212

1313
# make and upload the distribution tarball
1414
dist_upload:
15-
python setup.py sdist upload
15+
python3 setup.py sdist upload
1616
.PHONY: dist_upload
1717

1818
clean:

0 commit comments

Comments
 (0)