py-pandas: add v1.3.5 (#27930)

This commit is contained in:
Adam J. Stewart 2021-12-15 20:52:02 -06:00 committed by GitHub
parent a148e37c4c
commit 3ff2fb43cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ class PyPandas(PythonPackage):
maintainers = ['adamjstewart']
version('1.3.5', sha256='1e4285f5de1012de20ca46b188ccf33521bff61ba5c5ebd78b4fb28e5416a9f1')
version('1.3.4', sha256='a2aa18d3f0b7d538e21932f637fbfe8518d085238b429e4790a35e1e44a96ffc')
version('1.3.3', sha256='272c8cb14aa9793eada6b1ebe81994616e647b5892a370c7135efb2924b701df')
version('1.3.2', sha256='cbcb84d63867af3411fa063af3de64902665bb5b3d40b25b2059e40603594e87')
@ -64,6 +65,7 @@ class PyPandas(PythonPackage):
depends_on('py-cython@0.29.24:2', type='build', when='@1.3.4:')
depends_on('py-setuptools@24.2.0:', type='build')
depends_on('py-setuptools@38.6.0:', type='build', when='@1.3:')
depends_on('py-setuptools@51.0.0:', type='build', when='@1.3.2:')
depends_on('py-numpy', type=('build', 'run'))
# 'NUMPY_IMPORT_ARRAY_RETVAL' was removed in numpy@0.19
depends_on('py-numpy@:1.18', type=('build', 'run'), when='@:0.25')
@ -91,7 +93,7 @@ class PyPandas(PythonPackage):
@property
def import_modules(self):
modules = super().import_modules
modules = super(PythonPackage, self).import_modules
ignored_imports = ["pandas.tests", "pandas.plotting._matplotlib"]