-
Notifications
You must be signed in to change notification settings - Fork 23
Add support for Python 3.14 #227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -28,6 +28,7 @@ classifiers = [ | |||
| "Programming Language :: Python :: 3.11", | ||||
| "Programming Language :: Python :: 3.12", | ||||
| "Programming Language :: Python :: 3.13", | ||||
| "Programming Language :: Python :: 3.14", | ||||
| "Programming Language :: Python :: Implementation :: CPython", | ||||
| "Programming Language :: Python :: Implementation :: PyPy", | ||||
| "Intended Audience :: Developers", | ||||
|
|
@@ -86,9 +87,9 @@ dependencies = [ | |||
| "platformdirs==4.5.0", | ||||
| "pluggy==1.6.0", | ||||
| "pycparser==2.23", | ||||
| "pydantic==2.11.7", | ||||
| "pydantic-settings==2.10.1", | ||||
| "pydantic_core==2.33.2", | ||||
| "pydantic==2.13.3", | ||||
| "pydantic-settings==2.14.0", | ||||
| "pydantic_core==2.46.3", | ||||
|
||||
| "pydantic_core==2.46.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The inline comment mentions “latest supported one by PyO3”, but this repository doesn’t appear to use PyO3; this makes the rationale for the matrix versions unclear/misleading. Update the comment to reflect the actual reason for testing 3.11 and 3.14 (or remove it).