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.
1 parent a306616 commit 4825dcfCopy full SHA for 4825dcf
Makefile
@@ -3,16 +3,16 @@ all: README README.org
3
# a multiple-target pattern rule means that a single invocation of the command
4
# builds all the targets, which is what I want here
5
%EADME %EADME.org: gnuplotlib.py README.footer.org extract_README.py
6
- python extract_README.py gnuplotlib
+ python3 extract_README.py gnuplotlib
7
8
# make distribution tarball
9
dist:
10
- python setup.py sdist
+ python3 setup.py sdist
11
.PHONY: dist
12
13
# make and upload the distribution tarball
14
dist_upload:
15
- python setup.py sdist upload
+ python3 setup.py sdist upload
16
.PHONY: dist_upload
17
18
clean:
0 commit comments