diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-03-04 09:56:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 09:56:35 -0700 |
commit | 1b3543cc456c352df8550ae2f0db0a5cfe422f35 (patch) | |
tree | 33014be8954cefb25bbf0c28859a3c2cba7e567b /doc | |
parent | d5064d4ab5152c71c4b639fe581cc80b74a103e4 (diff) | |
parent | 583901a074dc65145d3d6136ba7dcd02634d680b (diff) | |
download | numpy-1b3543cc456c352df8550ae2f0db0a5cfe422f35.tar.gz |
Merge pull request #15701 from sandy-lcq/master
MAINT: Convert shebang from python to python3 (#15687)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/DISTUTILS.rst.txt | 2 | ||||
-rwxr-xr-x | doc/cdoc/numpyfilter.py | 2 | ||||
-rwxr-xr-x | doc/postprocess.py | 2 | ||||
-rwxr-xr-x | doc/summarize.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/DISTUTILS.rst.txt b/doc/DISTUTILS.rst.txt index 677398baa..2957bb907 100644 --- a/doc/DISTUTILS.rst.txt +++ b/doc/DISTUTILS.rst.txt @@ -59,7 +59,7 @@ SciPy pure Python package example Below is an example of a minimal ``setup.py`` file for a pure SciPy package:: - #!/usr/bin/env python + #!/usr/bin/env python3 def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('mypackage',parent_package,top_path) diff --git a/doc/cdoc/numpyfilter.py b/doc/cdoc/numpyfilter.py index 1c1b9c5ad..d3cfe18f0 100755 --- a/doc/cdoc/numpyfilter.py +++ b/doc/cdoc/numpyfilter.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ numpyfilter.py [-h] inputfile diff --git a/doc/postprocess.py b/doc/postprocess.py index c7fbcc6e7..309161bc0 100755 --- a/doc/postprocess.py +++ b/doc/postprocess.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ %prog MODE FILES... diff --git a/doc/summarize.py b/doc/summarize.py index 5a3088267..edd260ec7 100755 --- a/doc/summarize.py +++ b/doc/summarize.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ summarize.py |