summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2022-01-18 11:45:49 -0500
committerGitHub <noreply@github.com>2022-01-18 10:45:49 -0600
commitbd987d92789a1fe4ab4555afaf2867b6255636a9 (patch)
tree6123ba27d09b87012fcd80e0d5ed2af38e085cf2 /var
parent58c598ffe6a63ba62e19987ff9ed15d4cfd078e6 (diff)
downloadspack-bd987d92789a1fe4ab4555afaf2867b6255636a9.tar.gz
spack-bd987d92789a1fe4ab4555afaf2867b6255636a9.tar.bz2
spack-bd987d92789a1fe4ab4555afaf2867b6255636a9.tar.xz
spack-bd987d92789a1fe4ab4555afaf2867b6255636a9.zip
[py-tpot] fixed dependency and added version 0.11.7 (#28484)
* [py-tpot] fixed py-scipy dependency * [py-tpot] added version 0.11.7
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-tpot/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-tpot/package.py b/var/spack/repos/builtin/packages/py-tpot/package.py
index 0be14648c3..16023ab975 100644
--- a/var/spack/repos/builtin/packages/py-tpot/package.py
+++ b/var/spack/repos/builtin/packages/py-tpot/package.py
@@ -15,6 +15,7 @@ class PyTpot(PythonPackage):
homepage = "https://epistasislab.github.io/tpot/"
pypi = "tpot/TPOT-0.11.5.tar.gz"
+ version('0.11.7', sha256='64ff1845efdec3d9c70b35587f719cc0821722f27d16f542f83bf81f448e3ff1')
version('0.11.5', sha256='909be08b29165ce48de5e5d2e3fd73fee9aeeaf1030f2e0912ce0f0bd9c3d2f3')
depends_on('py-setuptools', type='build')
@@ -22,9 +23,10 @@ class PyTpot(PythonPackage):
depends_on('py-deap@1.2:', type=('build', 'run'))
depends_on('py-numpy@1.16.3:', type=('build', 'run'))
depends_on('py-scikit-learn@0.22.0:', type=('build', 'run'))
- depends_on('py-scipy@1.3.1', type=('build', 'run'))
+ depends_on('py-scipy@1.3.1:', type=('build', 'run'))
depends_on('py-tqdm@4.36.1:', type=('build', 'run'))
depends_on('py-stopit@1.1.1:', type=('build', 'run'))
depends_on('py-pandas@0.24.2:', type=('build', 'run'))
depends_on('py-joblib@0.13.2:', type=('build', 'run'))
depends_on('py-update-checker@0.16:', type=('build', 'run'))
+ depends_on('py-xgboost@1.1.0:', type=('build', 'run'), when='@0.11.7:')