py-scikit-optimize: add v0.9.0 and move gptune patch (#38738)

Co-authored-by: liuyangzhuan <liuyangzhuan@gmail.com>
This commit is contained in:
Jen Herting 2023-08-28 07:43:25 -04:00 committed by GitHub
parent 8a3d98b632
commit 98daf5b7ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 7 deletions

View file

@ -41,7 +41,7 @@ class Gptune(CMakePackage):
depends_on("py-scikit-learn", type=("build", "run")) depends_on("py-scikit-learn", type=("build", "run"))
depends_on("py-matplotlib", type=("build", "run")) depends_on("py-matplotlib", type=("build", "run"))
depends_on("py-pyyaml", type=("build", "run")) depends_on("py-pyyaml", type=("build", "run"))
depends_on("py-scikit-optimize@master+gptune", type=("build", "run")) depends_on("py-scikit-optimize@0.9.0", patches=[patch("space.patch")], type=("build", "run"))
depends_on("py-gpy", type=("build", "run")) depends_on("py-gpy", type=("build", "run"))
depends_on("py-lhsmdu", type=("build", "run")) depends_on("py-lhsmdu", type=("build", "run"))
depends_on("py-hpbandster", type=("build", "run")) depends_on("py-hpbandster", type=("build", "run"))

View file

@ -21,17 +21,19 @@ class PyScikitOptimize(PythonPackage):
maintainers("liuyangzhuan") maintainers("liuyangzhuan")
version("master", branch="master") version("master", branch="master")
version("0.9.0", sha256="77d8c9e64947fc9f5cc05bbc6aed7b8a9907871ae26fe11997fd67be90f26008")
version("0.5.2", sha256="1d7657a4b8ef9aa6d81e49b369c677c584e83269f11710557741d3b3f8fa0a75") version("0.5.2", sha256="1d7657a4b8ef9aa6d81e49b369c677c584e83269f11710557741d3b3f8fa0a75")
variant("plots", default=True, description="Build with plot support from py-matplotlib") variant("plots", default=True, description="Build with plot support from py-matplotlib")
variant("gptune", default=False, description="Build with patches for GPTune")
depends_on("py-setuptools", type="build") depends_on("py-setuptools", type="build")
depends_on("py-numpy", type=("build", "run")) depends_on("py-numpy", type=("build", "run"))
depends_on("py-scipy@0.14.0:", type=("build", "run")) depends_on("py-numpy@1.13.3:", when="@0.9:", type=("build", "run"))
depends_on("py-scipy@0.14:", type=("build", "run"))
depends_on("py-scipy@0.19.1:", when="@0.9:", type=("build", "run"))
depends_on("py-scikit-learn@0.19.1:", type=("build", "run")) depends_on("py-scikit-learn@0.19.1:", type=("build", "run"))
depends_on("py-pyyaml", when="+gptune", type=("build", "run")) depends_on("py-scikit-learn@0.20:", when="@0.9:", type=("build", "run"))
depends_on("py-pyaml@16.9:", when="@0.9:", type=("build", "run"))
depends_on("py-joblib@0.11:", when="@0.9:", type=("build", "run"))
depends_on("py-matplotlib", when="+plots") depends_on("py-matplotlib", when="+plots")
depends_on("py-matplotlib@2:", when="@0.9:+plots")
patch("space.patch", when="+gptune")