Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
# keras needs hdf5 on pre-prelease Python.
- run: sudo apt-get update -qq && sudo apt-get install --yes libhdf5-dev
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v7
# keras needs hdf5 on pre-prelease Python.
- run: sudo apt-get update -qq && sudo apt-get install --yes libhdf5-dev
- uses: astral-sh/setup-uv@v7
- uses: actions/setup-python@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.14t
3.15t
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ dependencies = [
"pandas>=2.3.3",
"pillow>=11.3",
"rich>=13.9.4",
"scikit-learn>=1.9",
# https://github.com/scikit-learn/scikit-learn/issues/34898
"scikit-learn @ https://github.com/scikit-learn/scikit-learn.git ; python_version>='3.15'",
"scikit-learn>=1.9; python_version<'3.15'",
"scipy>=1.18.1",
"statsmodels>=0.14.4",
"sympy>=1.13.3",
Expand Down
Loading
Loading