Skip to content

Commit 21e2d3f

Browse files
committed
GitHub test changes
1 parent ebd0a63 commit 21e2d3f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/build-test-deploy.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,13 @@ jobs:
2121
LANG: en_US.UTF-8
2222
strategy:
2323
matrix:
24-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
24+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
2525
os-version: ['ubuntu-20.04', 'windows-latest', 'macos-latest']
26+
exclude:
27+
- python-version: '3.6'
28+
os-version: 'macos-latest'
29+
- python-version: '3.7'
30+
os-version: 'macos-latest'
2631
# Pinned Ubuntu version to 20.04 since no Python 3.6 builds available on ubuntu-latest (22.04) as of 2022-12-7.
2732
# os-version: [ubuntu-latest, windows-latest, macos-latest]
2833

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
[tox]
15-
envlist = py{36,37,38,39,310,311}-tests-{clean,unit,integration}
15+
envlist = py{36,37,38,39,310,311,312}-tests-{clean,unit,integration}
1616

1717
# Allow execution even if all Python versions are not present
1818
skip_missing_interpreters = {env:TOX_SKIP_MISSING_INTERPRETERS:True}
@@ -26,6 +26,7 @@ python =
2626
3.9: py39
2727
3.10: py310
2828
3.11: py311
29+
3.12: py312
2930

3031
[testenv]
3132
skip_install =
@@ -38,6 +39,7 @@ basepython =
3839
py39: python3.9
3940
py310: python3.10
4041
py311: python3.11
42+
py312: python3.12
4143

4244
deps =
4345
clean: coverage

0 commit comments

Comments
 (0)