Skip to content

Commit e0129d1

Browse files
committed
Maintenance: Add support for Python 3.13
1 parent d5fdb02 commit e0129d1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
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

+2-1
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",
@@ -92,6 +92,7 @@ def read(path: str) -> str:
9292
"Programming Language :: Python :: 3.10",
9393
"Programming Language :: Python :: 3.11",
9494
"Programming Language :: Python :: 3.12",
95+
"Programming Language :: Python :: 3.13",
9596
],
9697
use_scm_version=True,
9798
)

0 commit comments

Comments
 (0)