Skip to content

Commit ceed3fc

Browse files
authored
chore: support Python 3.14 (#254)
1 parent 5571d8c commit ceed3fc

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v3

packages/pynumaflow/poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/pynumaflow/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ classifiers = [
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
20-
"Programming Language :: Python :: 3.13"
20+
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14"
2122
]
2223
repository = "https://github.com/numaproj/numaflow-python"
2324

2425
[tool.poetry.dependencies]
25-
python = ">=3.9, <3.14"
26+
python = ">=3.9, <3.15"
2627
grpcio = "^1.48.1"
2728
grpcio-tools = "^1.48.1"
2829
google-cloud = "^0.34.0"

0 commit comments

Comments
 (0)