Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@
"matchPackageNames": ["jiter"],
"allowedVersions": "<0.12"
},
{
// pydantic 2.13 bumps PyO3 to 0.28 (via pydantic-core), which drops
// PyPy 3.10 support. Our openai-latest test matrix still includes
// PyPy 3.10, so pin pydantic to the 2.12.x line until PyPy 3.10 is
// removed from the matrix.
"matchPackageNames": ["pydantic"],
"allowedVersions": "<2.13"
},
{
"matchUpdateTypes": ["minor", "major"],
"schedule": ["before 8am on Monday"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
# the newest supported version of external dependencies.

openai==2.38.0
# older pydantic is required for PyPy < 3.11
pydantic==2.12.5
httpx==0.28.1
# older jiter is required for PyPy < 3.11
Expand Down
Loading