Skip to content
Closed
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: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15.0-rc.1"]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15.0-rc.1"]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Bug Fixes
* Default split-line prompt was missing trailing space.


Internal
--------
* Add Python 3.15 release candidate 1 to CI.
* Pin `pydantic_core` LLM transitive dependency to 3.15-friendly 2.48.0.


2.17.0 (2026/08/25)
==============

Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ build-backend = "setuptools.build_meta"
[project.optional-dependencies]
llm = [
"llm ~= 0.33",
"setuptools == 83.*", # Required by llm commands to install models
"pip ~= 26.1.2",
"setuptools == 83.*", # Required by llm commands to install models
"pip ~= 26.1.2", # Required by llm commands to install models
"pydantic_core ~= 2.48.0", # Force a version with 3.15 binary wheels for faster CI
]
dataframe = [
"polars ~= 1.42.1",
Expand All @@ -82,6 +83,7 @@ dev = [
"behave ~= 1.3.3",
"coverage ~= 7.13.4",
"mypy ~= 2.3.1",
"ast-serialize ~= 0.8.0", # Force a version with 3.15 binary wheels for faster CI
"pexpect ~= 4.9.0",
"pytest ~= 9.1.1",
"pytest-cov ~= 7.0.0",
Expand Down
Loading