Skip to content

Commit b1c5b66

Browse files
committed
Add Python 3.14 to the supported versions
1 parent 4ba2e8a commit b1c5b66

File tree

3 files changed

+196
-149
lines changed

3 files changed

+196
-149
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ jobs:
5151
- "3.11"
5252
- "3.12"
5353
- "3.13"
54-
# TODO: enable this https://github.com/openai/openai-agents-python/pull/1961/
55-
# - "3.14"
54+
- "3.14"
5655
env:
5756
OPENAI_API_KEY: fake-for-tests
5857
steps:

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ requires-python = ">=3.9"
77
license = "MIT"
88
authors = [{ name = "OpenAI", email = "[email protected]" }]
99
dependencies = [
10-
"openai>=2.2,<3",
11-
"pydantic>=2.10, <3",
10+
"openai>=2.6,<3",
11+
"tiktoken>=0.12,<0.13",
12+
"pydantic>=2.12.3, <3",
1213
"griffe>=1.5.6, <2",
1314
"typing-extensions>=4.12.2, <5",
1415
"requests>=2.0, <3",
@@ -24,6 +25,7 @@ classifiers = [
2425
"Programming Language :: Python :: 3.11",
2526
"Programming Language :: Python :: 3.12",
2627
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2729
"Operating System :: OS Independent",
2830
"Topic :: Software Development :: Libraries :: Python Modules",
2931
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)