Skip to content

Commit f4ae231

Browse files
committed
python3.15t
1 parent 1eeed73 commit f4ae231

5 files changed

Lines changed: 348 additions & 212 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v7
13+
# keras needs hdf5 on pre-prelease Python.
14+
- run: sudo apt-get update -qq && sudo apt-get install --yes libhdf5-dev
1315
- uses: astral-sh/setup-uv@v7
1416
with:
1517
enable-cache: true

.github/workflows/sphinx.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
runs-on: ubuntu-24.04-arm
2727
steps:
2828
- uses: actions/checkout@v7
29+
# keras needs hdf5 on pre-prelease Python.
30+
- run: sudo apt-get update -qq && sudo apt-get install --yes libhdf5-dev
2931
- uses: astral-sh/setup-uv@v7
3032
- uses: actions/setup-python@v7
3133
with:

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.14t
1+
3.15t

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ dependencies = [
2222
"pandas>=2.3.3",
2323
"pillow>=11.3",
2424
"rich>=13.9.4",
25-
"scikit-learn>=1.9",
25+
# https://github.com/scikit-learn/scikit-learn/issues/34898
26+
"scikit-learn @ https://github.com/scikit-learn/scikit-learn.git ; python_version>='3.15'",
27+
"scikit-learn>=1.9; python_version<'3.15'",
2628
"scipy>=1.18.1",
2729
"statsmodels>=0.14.4",
2830
"sympy>=1.13.3",

0 commit comments

Comments
 (0)