Skip to content

Commit 554b393

Browse files
committed
Add testing for Python 3.12
1 parent e26e310 commit 554b393

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

.github/workflows/test.yml

+2-13
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,7 @@ jobs:
7575
strategy:
7676
fail-fast: false
7777
matrix:
78-
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
79-
include:
80-
- python: "3.7"
81-
tox_env: "py37"
82-
- python: "3.8"
83-
tox_env: "py38"
84-
- python: "3.9"
85-
tox_env: "py39"
86-
- python: "3.10"
87-
tox_env: "py310"
88-
- python: "3.11-dev"
89-
tox_env: "py311"
78+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
9079

9180
steps:
9281
- uses: actions/checkout@v2
@@ -115,4 +104,4 @@ jobs:
115104
- name: Test
116105
shell: bash
117106
run: |
118-
tox run -e ${{ matrix.tox_env }} --installpkg `find dist/*.tar.gz`
107+
tox run -e py --installpkg `find dist/*.tar.gz`

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Catch2: add support for catch version 3 ([#115](https://github.com/pytest-dev/pytest-cpp/pull/115))
44
- Catch2: support exception handling ([#117](https://github.com/pytest-dev/pytest-cpp/pull/117))
5+
- Added support for Python 3.12.
56

67
# 2.4.0 (2023-09-08)
78

setup.py

+1
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
"Programming Language :: C++",
3940
"Topic :: Software Development :: Quality Assurance",
4041
"Topic :: Software Development :: Testing",

0 commit comments

Comments
 (0)