Skip to content

Commit 86b18f4

Browse files
committed
feat: adds support for Python runtime 3.14
1 parent fa76e31 commit 86b18f4

File tree

7 files changed

+12
-4
lines changed

7 files changed

+12
-4
lines changed

.github/sync-repo-settings.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ branchProtectionRules:
1919
- 'Samples - Python 3.11'
2020
- 'Samples - Python 3.12'
2121
- 'Samples - Python 3.13'
22+
- 'Samples - Python 3.14'
2223
- pattern: v2
2324
requiresLinearHistory: true
2425
requiresCodeOwnerReviews: true

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python: ['3.9', '3.11', '3.12', '3.13']
12+
python: ['3.9', '3.11', '3.12', '3.13', '3.14']
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4

CONTRIBUTING.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In order to add a feature:
2222
documentation.
2323

2424
- The feature must work fully on the following CPython versions:
25-
3.9, 3.10, 3.11, 3.12 and 3.13 on both UNIX and Windows.
25+
3.9, 3.10, 3.11, 3.12, 3.13 and 3.14 on both UNIX and Windows.
2626

2727
- The feature must not add unnecessary dependencies (where
2828
"unnecessary" is of course subjective, but new dependencies should
@@ -226,12 +226,14 @@ We support:
226226
- `Python 3.11`_
227227
- `Python 3.12`_
228228
- `Python 3.13`_
229+
- `Python 3.14`_
229230

230231
.. _Python 3.9: https://docs.python.org/3.9/
231232
.. _Python 3.10: https://docs.python.org/3.10/
232233
.. _Python 3.11: https://docs.python.org/3.11/
233234
.. _Python 3.12: https://docs.python.org/3.12/
234235
.. _Python 3.13: https://docs.python.org/3.13/
236+
.. _Python 3.14: https://docs.python.org/3.14/
235237

236238

237239
Supported versions can be found in our ``noxfile.py`` `config`_.

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
DEFAULT_PYTHON_VERSION = "3.9"
4141
SYSTEM_TEST_PYTHON_VERSIONS = ["3.9", "3.11", "3.12", "3.13"]
42-
UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.11", "3.12", "3.13"]
42+
UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.11", "3.12", "3.13", "3.14"]
4343
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
4444

4545

owlbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"pandas": "https://pandas.pydata.org/pandas-docs/stable/",
5757
},
5858
system_test_python_versions=["3.9", "3.13"],
59-
unit_test_python_versions=["3.9", "3.10", "3.11", "3.12", "3.13"],
59+
unit_test_python_versions=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
6060
default_python_version="3.9",
6161
)
6262

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ classifiers = [
3838
"Programming Language :: Python :: 3.11",
3939
"Programming Language :: Python :: 3.12",
4040
"Programming Language :: Python :: 3.13",
41+
"Programming Language :: Python :: 3.14",
4142
"Operating System :: OS Independent",
4243
"Topic :: Internet",
4344
]
@@ -69,13 +70,15 @@ bqstorage = [
6970
# https://github.com/grpc/grpc/pull/15254
7071
"grpcio >= 1.47.0, < 2.0.0",
7172
"grpcio >= 1.49.1, < 2.0.0; python_version >= '3.11'",
73+
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
7274
"pyarrow >= 4.0.0",
7375
]
7476
pandas = [
7577
"pandas >= 1.3.0",
7678
"pandas-gbq >= 0.26.1",
7779
"grpcio >= 1.47.0, < 2.0.0",
7880
"grpcio >= 1.49.1, < 2.0.0; python_version >= '3.11'",
81+
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
7982
"pyarrow >= 3.0.0",
8083
"db-dtypes >= 1.0.4, < 2.0.0",
8184
]

testing/constraints-3.14.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Constraints for Python 3.14
2+
grpcio >= 1.75.1

0 commit comments

Comments
 (0)