py-scikit-learn: add Python 3.13 support (#47775)

This commit is contained in:
Adam J. Stewart 2024-11-24 15:39:36 +01:00 committed by GitHub
parent cde2620f41
commit 0bad754e23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,8 @@ class PyScikitLearn(PythonPackage):
# Based on PyPI wheel availability
with default_args(type=("build", "link", "run")):
depends_on("python@3.9:3.12", when="@1.4:")
depends_on("python@3.9:3.13", when="@1.5.2:")
depends_on("python@3.9:3.12", when="@1.4:1.5.1")
depends_on("python@3.8:3.12", when="@1.3.1:1.3")
depends_on("python@3.8:3.11", when="@1.1.3:1.3.0")
depends_on("python@3.8:3.10", when="@1.1.0:1.1.2")