This commit is contained in:
Paul Gauthier
2026-02-10 18:53:22 -08:00
parent a8c3e7c29c
commit c1924f2c45
3 changed files with 13 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
pytest
pytest-cov
pytest-env
pip-tools
lox
@@ -12,3 +13,7 @@ semver
codespell
uv
google-cloud-bigquery
# matplotlib 3.7.2 requires contourpy 1.3.2, but contourpy 1.3.2 does not support Python 3.11.
contourpy==1.3.2 ; python_version < "3.11"
contourpy==1.3.3 ; python_version >= "3.11"

View File

@@ -8,4 +8,6 @@ numpy<2
# torch==2.2.2
# Later versions break test_help in GitHub Actions on Windows and Ubuntu
# llama-index-core==0.12.26
# due to llama-index-core==0.12.26
scikit-learn==1.7.2 ; python_version < "3.11"
scikit-learn==1.8.0 ; python_version >= "3.11"

View File

@@ -49,3 +49,8 @@ scipy<1.16
# https://github.com/pypa/twine/blob/6fbf880ee60915cf1666348c4bdd78a10415f2ac/twine/__init__.py#L40
# Uses importlib-metadata
importlib-metadata<8.0.0
# The proper dependency is litellm[proxy], but it installs
# mcp which is a pywin32 dependency that fails on linux CI.
fastapi
orjson