Skip to content

Commit 9ca4faa

Browse files
authored
Enabling python=3.13 (#390)
* Enabling `python=3.13` * Increase lower bounds of `numpy` and `scipy` for `python=3.13` environments.
1 parent 10d6710 commit 9ca4faa

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515

1616
steps:
1717
- uses: actions/checkout@v2

pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@ classifiers = [
1313
license = "Apache License 2.0"
1414

1515
[tool.poetry.dependencies]
16-
python = ">=3.9, <3.13"
16+
python = ">=3.9, <3.14"
1717
scikit-learn = "^1.6"
18-
numpy = ">=1.21.2"
19-
scipy = ">=1.7.2"
18+
numpy = [
19+
{version = ">=1.21.2", python = ">=3.9,<3.13"},
20+
{version = ">=2.1.0", python = ">=3.13"}
21+
]
22+
scipy = [
23+
{version = ">=1.7.2", python = ">=3.9,<3.13"},
24+
{version = ">=1.14.1", python = ">=3.13"}
25+
]
2026
tqdm = ">=4.3"
2127
lifelines = ">=0.25"
2228

0 commit comments

Comments
 (0)