File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 with :
2121 python-version-file : .python-version
2222 allow-prereleases : true
23+ # keras needs hdf5 on pre-prelease Python.
24+ - run : |
25+ if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
26+ sudo apt-get update -qq
27+ sudo apt-get install --yes libhdf5-dev
28+ fi
2329 - run : uv sync --group=test
2430 - name : Run tests
2531 # opencv-python is gated out on 3.14t (no cp314t wheel yet), so skip the
Original file line number Diff line number Diff line change 3333 with :
3434 python-version-file : .python-version
3535 allow-prereleases : true
36+ # keras needs hdf5 on pre-prelease Python.
37+ - run : |
38+ if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
39+ sudo apt-get update -qq
40+ sudo apt-get install --yes libhdf5-dev
41+ fi
3642 - run : uv sync --group=docs
3743 - uses : actions/configure-pages@v6
3844 - run : uv run sphinx-build -c docs . docs/_build/html
Original file line number Diff line number Diff line change 1- 3.14t
1+ 3.15t
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ dependencies = [
2323 " pandas>=2.3.3" ,
2424 " pillow>=11.3" ,
2525 " rich>=13.9.4" ,
26- " scikit-learn>=1.9" ,
26+ # https://github.com/scikit-learn/scikit-learn/issues/34898
27+ " scikit-learn @ https://github.com/scikit-learn/scikit-learn.git ; python_version>='3.15'" ,
28+ " scikit-learn>=1.9; python_version<'3.15'" ,
2729 " scipy>=1.18.1" ,
2830 " statsmodels>=0.14.4" ,
2931 " sympy>=1.13.3" ,
You can’t perform that action at this time.
0 commit comments