diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-08-11 14:43:31 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-08-11 14:43:31 -0600 |
commit | c9c1869eae67aa74eb9dfa7b81a18a1907a6684c (patch) | |
tree | 91f1138bc39578018d07c590547774f79eb30aa5 /setup.py | |
parent | c0b4340c698c486e459a0a2c80706c78329c64fc (diff) | |
download | numpy-c9c1869eae67aa74eb9dfa7b81a18a1907a6684c.tar.gz |
BUG: Revert use of `console_scripts`.
The changes introduced in #10463 caused f2py to hang in somde
circumstances. There is may a better fix than this, but
until it is implemented it is better to undo the change.
Closes #11649.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -368,13 +368,6 @@ def setup_package(): cmdclass={"sdist": sdist_checked}, python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', zip_safe=False, - entry_points={ - 'console_scripts': [ - 'f2py = numpy.f2py.__main__:main', - 'conv-template = numpy.distutils.conv_template:main', - 'from-template = numpy.distutils.from_template:main', - ] - }, ) if "--force" in sys.argv: |