Skip to content

Commit a947d79

Browse files
Run tests on Python 3.12
1 parent 79b91a1 commit a947d79

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ UNRELEASED
1111
Added
1212
-----
1313

14+
* Support for Python 3.12
1415
* Compatibility with junit-xml >= 2.0.
1516

1617
Removed

requirements.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# pip-compile --no-emit-index-url --strip-extras
66
#
7-
aiohttp==3.8.6
7+
aiohttp==3.9.0
88
# via devpi-server
99
aiosignal==1.3.1
1010
# via aiohttp
@@ -30,9 +30,7 @@ certifi==2023.7.22
3030
cffi==1.16.0
3131
# via argon2-cffi-bindings
3232
charset-normalizer==3.3.0
33-
# via
34-
# aiohttp
35-
# requests
33+
# via requests
3634
check-manifest==0.49
3735
# via devpi-client
3836
coverage==7.3.2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
'Programming Language :: Python :: 3.9',
3636
'Programming Language :: Python :: 3.10',
3737
'Programming Language :: Python :: 3.11',
38+
'Programming Language :: Python :: 3.12',
3839
],
3940
entry_points={
4041
'console_scripts': [

0 commit comments

Comments
 (0)