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
You can’t perform that action at this time.
0 commit comments