Skip to content

Commit c1924f2

Browse files
committed
from #4814
1 parent a8c3e7c commit c1924f2

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

requirements/requirements-dev.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pytest
2+
pytest-cov
23
pytest-env
34
pip-tools
45
lox
@@ -12,3 +13,7 @@ semver
1213
codespell
1314
uv
1415
google-cloud-bigquery
16+
17+
# matplotlib 3.7.2 requires contourpy 1.3.2, but contourpy 1.3.2 does not support Python 3.11.
18+
contourpy==1.3.2 ; python_version < "3.11"
19+
contourpy==1.3.3 ; python_version >= "3.11"

requirements/requirements-help.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ numpy<2
88
# torch==2.2.2
99

1010
# Later versions break test_help in GitHub Actions on Windows and Ubuntu
11-
# llama-index-core==0.12.26
11+
# due to llama-index-core==0.12.26
12+
scikit-learn==1.7.2 ; python_version < "3.11"
13+
scikit-learn==1.8.0 ; python_version >= "3.11"

requirements/requirements.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,8 @@ scipy<1.16
4949
# https://github.com/pypa/twine/blob/6fbf880ee60915cf1666348c4bdd78a10415f2ac/twine/__init__.py#L40
5050
# Uses importlib-metadata
5151
importlib-metadata<8.0.0
52+
53+
# The proper dependency is litellm[proxy], but it installs
54+
# mcp which is a pywin32 dependency that fails on linux CI.
55+
fastapi
56+
orjson

0 commit comments

Comments
 (0)