Skip to content

Commit fe4f134

Browse files
committed
Try to enable Python 3.12
1 parent 9f9dba6 commit fe4f134

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/python-package.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
python-version:
2121
- "3.10"
2222
- "3.11"
23+
- "3.12"
2324
system:
2425
- ubuntu-latest
2526
- macos-latest

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=====================================
33
generator=datazen
44
version=3.1.3
5-
hash=598c034e692603540425830661a95aa1
5+
hash=c704961deeb1f544c94a11a7582f58d4
66
=====================================
77
-->
88

@@ -31,6 +31,7 @@ This package is tested with the following Python minor versions:
3131

3232
* [`python3.10`](https://docs.python.org/3.10/)
3333
* [`python3.11`](https://docs.python.org/3.11/)
34+
* [`python3.12`](https://docs.python.org/3.12/)
3435

3536
## Platform Support
3637

local/configs/python.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author_info:
44
55
username: "vkottler"
66

7-
versions: ["3.10", "3.11"]
7+
versions: ["3.10", "3.11", "3.12"]
88

99
systems:
1010
- macos-latest

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Topic :: Software Development :: Build Tools",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2728
"Operating System :: Microsoft :: Windows",
2829
"Operating System :: MacOS",
2930
"Operating System :: POSIX :: Linux",

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# =====================================
22
# generator=datazen
33
# version=3.1.3
4-
# hash=b10cdc2e4759a797bc0d36b525de6ade
4+
# hash=43286ed57052c2548361d2dcdd062187
55
# =====================================
66

77
"""
@@ -30,6 +30,7 @@
3030
"versions": [
3131
"3.10",
3232
"3.11",
33+
"3.12",
3334
],
3435
}
3536
setup(

0 commit comments

Comments
 (0)