Add py-cython 0.29.13 (#13166)

This commit is contained in:
Adam J. Stewart 2019-10-13 19:49:07 -05:00 committed by GitHub
parent 2884a862e8
commit 4b2b548981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ class PyCython(PythonPackage):
"""The Cython compiler for writing C extensions for the Python language."""
homepage = "https://pypi.python.org/pypi/cython"
url = "https://pypi.io/packages/source/c/cython/Cython-0.29.7.tar.gz"
url = "https://pypi.io/packages/source/c/cython/Cython-0.29.13.tar.gz"
import_modules = [
'cython', 'Cython', 'Cython.Build', 'Cython.Compiler',
@ -20,6 +20,7 @@ class PyCython(PythonPackage):
'Cython.Tempita', 'pyximport',
]
version('0.29.13', sha256='c29d069a4a30f472482343c866f7486731ad638ef9af92bfe5fca9c7323d638e')
version('0.29.7', sha256='55d081162191b7c11c7bfcb7c68e913827dfd5de6ecdbab1b99dab190586c1e8')
version('0.29.5', sha256='9d5290d749099a8e446422adfb0aa2142c711284800fb1eb70f595101e32cbf1')
version('0.29', sha256='94916d1ede67682638d3cc0feb10648ff14dc51fb7a7f147f4fedce78eaaea97')
@ -31,7 +32,8 @@ class PyCython(PythonPackage):
version('0.23.4', sha256='fec42fecee35d6cc02887f1eef4e4952c97402ed2800bfe41bbd9ed1a0730d8e')
version('0.21.2', sha256='b01af23102143515e6138a4d5e185c2cfa588e0df61c0827de4257bac3393679')
depends_on('python@:2', type=('build', 'run'), when='@:0.22')
depends_on('python@2.6:2.8,3.3:', when='@0.23:', type=('build', 'run'))
depends_on('python@:2', when='@:0.22', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('gdb@7.2:', type='test')