Skip to content

Commit

Permalink
support python 3.13 (#534)
Browse files Browse the repository at this point in the history
* Test on python 3.13.

* Specify scipy version

* specify more specific scipy version

* specify less specific scipy version
  • Loading branch information
till-m authored Dec 19, 2024
1 parent 58c9061 commit 06a75a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", python = ">=3.13"}
]
colorama = "^0.4.6"


Expand Down

0 comments on commit 06a75a6

Please sign in to comment.