bump py-statsmodels versions to 0.13.2 for gptune (#29972)

This commit is contained in:
liuyangzhuan 2022-04-11 16:10:28 -07:00 committed by GitHub
parent a9b4f33f23
commit dc44642bfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 8 deletions

View File

@ -48,6 +48,7 @@ class Gptune(CMakePackage):
depends_on('py-requests', type=('build', 'run'))
depends_on('py-cython', type=('build', 'run'))
depends_on('py-pyaml', type=('build', 'run'))
depends_on('py-statsmodels@0.13.0:', type=('build', 'run'))
depends_on('py-mpi4py@3.0.3:', type=('build', 'run'))
depends_on('pygmo', type=('build', 'run'))
depends_on('openturns', type=('build', 'run'))

View File

@ -9,15 +9,16 @@ class PyPatsy(PythonPackage):
building design matrices."""
homepage = "https://github.com/pydata/patsy"
pypi = "patsy/patsy-0.4.1.zip"
version('0.5.1', sha256='f115cec4201e1465cd58b9866b0b0e7b941caafec129869057405bfe5b5e3991',
url="https://pypi.io/packages/source/p/patsy/patsy-0.5.1.tar.gz")
version('0.4.1', sha256='dc1cc280045b0e6e50c04706fd1e26d2a00ea400aa112f88e8142f88b0b7d3d4')
pypi = "patsy/patsy-0.5.2.tar.gz"
version('0.5.2', sha256='5053de7804676aba62783dbb0f23a2b3d74e35e5bfa238b88b7cbf148a38b69d')
version('0.5.1', sha256='f115cec4201e1465cd58b9866b0b0e7b941caafec129869057405bfe5b5e3991')
version('0.4.1', sha256='dc1cc280045b0e6e50c04706fd1e26d2a00ea400aa112f88e8142f88b0b7d3d4',
url="https://pypi.io/packages/source/p/patsy/patsy-0.4.1.zip")
variant('splines', default=False, description="Offers spline related functions")
depends_on('py-setuptools', type='build')
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-numpy@1.4:', type=('build', 'run'), when='@0.5.1:')
depends_on('py-scipy', type=('build', 'run'), when="+splines")
depends_on('py-six', type=('build', 'run'))

View File

@ -12,6 +12,8 @@ class PyStatsmodels(PythonPackage):
homepage = "https://www.statsmodels.org"
pypi = "statsmodels/statsmodels-0.8.0.tar.gz"
version('0.13.1', sha256='006ec8d896d238873af8178d5475203844f2c391194ed8d42ddac37f5ff77a69')
version('0.13.0', sha256='f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a')
version('0.12.2', sha256='8ad7a7ae7cdd929095684118e3b05836c0ccb08b6a01fe984159475d174a1b10')
version('0.12.1', sha256='a271b4ccec190148dccda25f0cbdcbf871f408fc1394a10a7dc1af4a62b91c8e')
version('0.10.2', sha256='9cd2194c6642a8754e85f9a6e6912cdf996bebf6ff715d3cc67f65dadfd37cc9')
@ -28,6 +30,8 @@ class PyStatsmodels(PythonPackage):
# might work.
depends_on('py-setuptools@0.6c5:', type='build')
depends_on('py-cython@0.29:', type='build')
depends_on('py-cython@0.29.14:', type='build', when='@0.12.0:')
depends_on('py-cython@0.29.22:', type='build', when='@0.13.0:')
# patsy@0.5.1 works around a Python change
# https://github.com/statsmodels/statsmodels/issues/5343 and
@ -36,15 +40,19 @@ class PyStatsmodels(PythonPackage):
depends_on('py-numpy@1.7.0:', type=('build', 'link', 'run'), when='@0.8.0:')
depends_on('py-numpy@1.11.0:', type=('build', 'link', 'run'), when='@0.10.1:')
depends_on('py-numpy@1.15.0:', type=('build', 'link', 'run'), when='@0.12.1:')
depends_on('py-numpy@1.17.0:', type=('build', 'link', 'run'), when='@0.13.0:')
depends_on('py-pandas@0.12:', type=('build', 'run'), when='@0.8.0:')
depends_on('py-pandas@0.19:', type=('build', 'run'), when='@0.10.1:')
depends_on('py-pandas@0.21:', type=('build', 'run'), when='@0.12.1:')
depends_on('py-pandas@0.23:', type=('build', 'run'), when='@0.12.0:')
depends_on('py-pandas@0.25:', type=('build', 'run'), when='@0.13.0:')
depends_on('py-patsy@0.2.1:', type=('build', 'run'), when='@0.8.0:')
depends_on('py-patsy@0.4.0:', type=('build', 'run'), when='@0.10.1:')
depends_on('py-patsy@0.5.0:', type=('build', 'run'), when='@0.12.1:')
depends_on('py-patsy@0.5.1:', type=('build', 'run'), when='@0.12.0:')
depends_on('py-patsy@0.5.2:', type=('build', 'run'), when='@0.13.0:')
depends_on('py-scipy@0.11:', type=('build', 'run'), when='@0.8.0:')
depends_on('py-scipy@0.18:', type=('build', 'run'), when='@0.10.1:')
depends_on('py-scipy@1.1:', type=('build', 'run'), when='@0.12.1:')
depends_on('py-scipy@1.2:', type=('build', 'run'), when='@0.12.0:')
depends_on('py-scipy@1.3:', type=('build', 'run'), when='@0.13.0:')
depends_on('py-matplotlib@1.3:', type=('build', 'run'), when='@0.8.0 +plotting')
depends_on('py-pytest', type='test')