diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-10-15 23:12:20 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-10-15 23:12:20 +0200 |
commit | 03f0aebf1a43c672f17e89382804809601828111 (patch) | |
tree | 54dff27e6027271b4c521e7154a48baceae27be7 /numpy/f2py | |
parent | aa8a2437b700ce9a8c3e12652b75982e96a3777c (diff) | |
download | numpy-03f0aebf1a43c672f17e89382804809601828111.tar.gz |
MAINT: remove obsolete version checks
minimum requirement is python2.6, this allows removing a couple 2.3 and
2.4 checks.
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/setup.py | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index 3c6140b53..a27a001a9 100644 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -88,26 +88,24 @@ main() if __name__ == "__main__": config = configuration(top_path='') - version = config.get_version() print('F2PY Version', version) config = config.todict() - if sys.version[:3]>='2.3': - config['download_url'] = "http://cens.ioc.ee/projects/f2py2e/2.x"\ - "/F2PY-2-latest.tar.gz" - config['classifiers'] = [ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: NumPy License', - 'Natural Language :: English', - 'Operating System :: OS Independent', - 'Programming Language :: C', - 'Programming Language :: Fortran', - 'Programming Language :: Python', - 'Topic :: Scientific/Engineering', - 'Topic :: Software Development :: Code Generators', - ] + config['download_url'] = "http://cens.ioc.ee/projects/f2py2e/2.x"\ + "/F2PY-2-latest.tar.gz" + config['classifiers'] = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: NumPy License', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: C', + 'Programming Language :: Fortran', + 'Programming Language :: Python', + 'Topic :: Scientific/Engineering', + 'Topic :: Software Development :: Code Generators', + ] setup(version=version, description = "F2PY - Fortran to Python Interface Generaton", author = "Pearu Peterson", |