Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
with:
python-version-file: .python-version
allow-prereleases: true
# keras needs hdf5 on pre-release Python.
- run: |
if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
sudo apt-get update -qq
sudo apt-get install --yes libhdf5-dev
fi
- run: uv sync --group=test
- name: Run tests
# opencv-python is gated out on 3.14t (no cp314t wheel yet), so skip the
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
with:
python-version-file: .python-version
allow-prereleases: true
# keras needs hdf5 on pre-release Python.
- run: |
if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
sudo apt-get update -qq
sudo apt-get install --yes libhdf5-dev
fi
- run: uv sync --group=docs
- uses: actions/configure-pages@v6
- run: uv run sphinx-build -c docs . docs/_build/html
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"pandas>=2.3.3",
"pillow>=11.3",
"rich>=13.9.4",
"scikit-learn>=1.9",
"scikit-learn>=1.9.1",
"scipy>=1.18.1",
"statsmodels>=0.14.4",
"sympy>=1.13.3",
Expand Down
Loading