Skip to content

Commit 3391168

Browse files
authored
ci(infra): test CodSpeed with Python 3.13 (#33599)
1 parent 28728dc commit 3391168

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

β€Ž.github/scripts/check_diff.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]:
130130
return _get_pydantic_test_configs(dir_)
131131

132132
if job == "codspeed":
133-
py_versions = ["3.12"] # 3.13 is not yet supported
133+
py_versions = ["3.13"]
134134
elif dir_ == "libs/core":
135135
py_versions = ["3.10", "3.11", "3.12", "3.13", "3.14"]
136136
# custom logic for specific directories

β€Ž.github/workflows/check_diffs.ymlβ€Ž

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,14 @@ jobs:
184184
steps:
185185
- uses: actions/checkout@v5
186186

187-
# We have to use 3.12 as 3.13 is not yet supported
188187
- name: "πŸ“¦ Install UV Package Manager"
189188
uses: astral-sh/setup-uv@v7
190189
with:
191-
python-version: "3.12"
190+
python-version: "3.13"
192191

193192
- uses: actions/setup-python@v6
194193
with:
195-
python-version: "3.12"
194+
python-version: "3.13"
196195

197196
- name: "πŸ“¦ Install Test Dependencies"
198197
run: uv sync --group test

β€Žlibs/core/pyproject.tomlβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,3 @@ markers = [ "requires: mark tests as requiring a specific library", "compile: ma
134134
asyncio_mode = "auto"
135135
filterwarnings = [ "ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",]
136136
asyncio_default_fixture_loop_scope = "function"
137-

0 commit comments

Comments
Β (0)