Skip to content

Commit e33a6e1

Browse files
test: remove Python 3.7, add Python 3.11 and Python 3.12
1 parent 383cdf8 commit e33a6e1

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- name: Handle the code
1414
uses: actions/checkout@v4
1515

16-
- name: Set up Python 3.10
16+
- name: Set up Python 3.12
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.10"
19+
python-version: "3.12"
2020

2121
- name: Install pypa/build
2222
run: >-

.github/workflows/testing.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-python@v5
2323
with:
24-
python-version: "3.10"
24+
python-version: "3.12"
2525

2626
- name: Handle pip cache
2727
uses: actions/cache@v4
@@ -52,17 +52,19 @@ jobs:
5252
strategy:
5353
fail-fast: false
5454
matrix:
55-
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.10-v7.3.15"]
55+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10-v7.3.15"]
5656
zk-version: ["3.4.14", "3.5.10", "3.6.3", "3.7.1"]
5757
include:
58-
- python-version: "3.7"
59-
tox-env: py37
6058
- python-version: "3.8"
6159
tox-env: py38
6260
- python-version: "3.9"
6361
tox-env: py39
6462
- python-version: "3.10"
6563
tox-env: py310
64+
- python-version: "3.11"
65+
tox-env: py311
66+
- python-version: "3.12"
67+
tox-env: py312
6668
- python-version: "pypy-3.10-v7.3.15"
6769
tox-env: pypy3
6870
steps:
@@ -118,7 +120,7 @@ jobs:
118120

119121
- uses: actions/setup-python@v5
120122
with:
121-
python-version: "3.10"
123+
python-version: "3.12"
122124

123125
- name: Handle pip cache
124126
uses: actions/cache@v4

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ classifiers =
1919
Operating System :: OS Independent
2020
Programming Language :: Python
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
2524
Programming Language :: Python :: 3.10
25+
Programming Language :: Python :: 3.11
26+
Programming Language :: Python :: 3.12
2627
Programming Language :: Python :: Implementation :: CPython
2728
Programming Language :: Python :: Implementation :: PyPy
2829
Topic :: Communications

0 commit comments

Comments
 (0)