Skip to content

Commit 038543f

Browse files
committed
Maintenance: Add support for Python 3.13
1 parent e9157bb commit 038543f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/main.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
"3.10",
2121
"3.11",
2222
"3.12",
23+
"3.13",
2324
]
2425
steps:
2526
- name: Checkout
@@ -56,6 +57,7 @@ jobs:
5657
"3.10",
5758
"3.11",
5859
"3.12",
60+
"3.13",
5961
]
6062
steps:
6163
- name: Checkout
@@ -82,6 +84,7 @@ jobs:
8284
"3.10",
8385
"3.11",
8486
"3.12",
87+
"3.13",
8588
]
8689
steps:
8790
- name: Checkout

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def read(path: str) -> str:
5252
"aiopg==1.4.0",
5353
"bitmath==1.3.3.1",
5454
"importlib-metadata; python_version<'3.8'",
55-
"kopf==1.36.2",
55+
"kopf==1.37.4",
5656
"kubernetes-asyncio==31.1.0",
5757
"PyYAML<7.0",
5858
"prometheus_client==0.21.1",
@@ -82,14 +82,15 @@ def read(path: str) -> str:
8282
"mypy==1.13.0",
8383
],
8484
},
85-
python_requires=">=3.10,<3.13",
85+
python_requires=">=3.10,<3.14",
8686
classifiers=[
8787
"Development Status :: 5 - Production/Stable",
8888
"License :: OSI Approved :: Apache Software License",
8989
"Programming Language :: Python :: 3",
9090
"Programming Language :: Python :: 3.10",
9191
"Programming Language :: Python :: 3.11",
9292
"Programming Language :: Python :: 3.12",
93+
"Programming Language :: Python :: 3.13",
9394
],
9495
use_scm_version=True,
9596
)

0 commit comments

Comments
 (0)