diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-07-02 20:57:48 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-07-04 14:40:33 -0700 |
commit | b141ee557fbd246c18fb1e37c709529fcd867d7b (patch) | |
tree | c4e695e74a8fb3a1b190da86909a93d9b4b5c9e3 | |
parent | 2244cd929354fb4157eaa78204ad6bb3bebea9bf (diff) | |
download | numpy-b141ee557fbd246c18fb1e37c709529fcd867d7b.tar.gz |
DOC: Correct issue reference
-rwxr-xr-x | tools/cythonize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cythonize.py b/tools/cythonize.py index 6ef908958..f0f1b5516 100755 --- a/tools/cythonize.py +++ b/tools/cythonize.py @@ -72,7 +72,7 @@ def process_pyx(fromfile, tofile): raise Exception('Cython failed') except OSError: # There are ways of installing Cython that don't result in a cython - # executable on the path, see gh-2397. + # executable on the path, see scipy/scipy#2397. r = subprocess.call([sys.executable, '-c', 'import sys; from Cython.Compiler.Main import ' 'setuptools_main as main; sys.exit(main())'] + flags + |