From 03f0aebf1a43c672f17e89382804809601828111 Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Wed, 15 Oct 2014 23:12:20 +0200 Subject: MAINT: remove obsolete version checks minimum requirement is python2.6, this allows removing a couple 2.3 and 2.4 checks. --- numpy/f2py/setup.py | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) (limited to 'numpy/f2py/setup.py') 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", -- cgit v1.2.1