Skip to content

Commit d7022cc

Browse files
authored
Merge pull request #279 from hugovk/add-3.12
2 parents 083723b + 0bf3d19 commit d7022cc

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
python: 3.8
1515

1616
# Latest Python & Pytest
17-
- toxenv: py311-pytest_latest-supported-xdist
18-
python: 3.11
17+
- toxenv: py312-pytest_latest-supported-xdist
18+
python: 3.12
1919

2020
# QA
2121
- toxenv: qa
2222
python: 3.8
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Set up Python
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python }}
2929
cache: 'pip'
@@ -48,10 +48,10 @@ jobs:
4848
if: github.ref=='refs/heads/main' && github.event_name!='pull_request'
4949

5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252

5353
- name: Setup Python
54-
uses: actions/setup-python@v4
54+
uses: actions/setup-python@v5
5555
with:
5656
python-version: "3.9"
5757

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal = 1
3-
41
[flake8]
52
max-line-length = 88
63
extend-ignore = E203

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def get_version(filename):
6565
"Programming Language :: Python :: 3.9",
6666
"Programming Language :: Python :: 3.10",
6767
"Programming Language :: Python :: 3.11",
68+
"Programming Language :: Python :: 3.12",
6869
"Programming Language :: Python :: Implementation :: PyPy",
6970
],
7071
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.14.0
3-
envlist = py{38,311,py}-pytest_latest-supported-xdist
3+
envlist = py{38,312,py}-pytest_latest-supported-xdist
44
qa
55
requires = virtualenv>=20.0.31
66

0 commit comments

Comments
 (0)