From 43baf7c7375491ecb944ffa50f6341ceb3868a7e Mon Sep 17 00:00:00 2001 From: till-m <36440677+till-m@users.noreply.github.com> Date: Mon, 16 Dec 2024 15:41:39 +0100 Subject: [PATCH 1/4] Test on python 3.13. --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index e6119aff1..8501d8cd6 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] numpy-version: [">=1.25,<2", ">=2"] steps: From f59ff1ce9f859a33dbc2b01e4f00ba87f4bf4b3f Mon Sep 17 00:00:00 2001 From: till-m <36440677+till-m@users.noreply.github.com> Date: Tue, 17 Dec 2024 09:15:10 +0100 Subject: [PATCH 2/4] Specify scipy version --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7c39fc0d8..767b07228 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,10 @@ packages = [{include = "bayes_opt"}] python = "^3.9" scikit-learn = "^1.0.0" numpy = ">=1.25" -scipy = "^1.0.0" +scipy = [ + {version = "^1.0.0", python = "<3.13"}, + {version = "1.14", python = ">=3.13"} +] colorama = "^0.4.6" From ed8c6185424df64a2833e2019be3e8c5bfcbe5c9 Mon Sep 17 00:00:00 2001 From: till-m <36440677+till-m@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:02:41 +0100 Subject: [PATCH 3/4] specify more specific scipy version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 767b07228..e7d6f47f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ scikit-learn = "^1.0.0" numpy = ">=1.25" scipy = [ {version = "^1.0.0", python = "<3.13"}, - {version = "1.14", python = ">=3.13"} + {version = "1.14.1", python = ">=3.13"} ] colorama = "^0.4.6" From 6678f4936074ed0f1f047b3996a11a8fcab31c36 Mon Sep 17 00:00:00 2001 From: till-m <36440677+till-m@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:14:25 +0100 Subject: [PATCH 4/4] specify less specific scipy version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e7d6f47f9..e20921ba8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ scikit-learn = "^1.0.0" numpy = ">=1.25" scipy = [ {version = "^1.0.0", python = "<3.13"}, - {version = "1.14.1", python = ">=3.13"} + {version = "^1.14.1", python = ">=3.13"} ] colorama = "^0.4.6"