Skip to content

Commit a73c6c2

Browse files
committed
update GitHub scoring to allow for compatibility with swat
1 parent da1ff2c commit a73c6c2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

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

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

tox.ini

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

1313

1414
[tox]
15-
envlist = py{38,39,310,311,312}-tests-{clean,unit,integration}
15+
envlist = py{38,39,310,311}-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}
@@ -24,7 +24,6 @@ python =
2424
3.9: py39
2525
3.10: py310
2626
3.11: py311
27-
3.12: py312
2827

2928
[testenv]
3029
skip_install =
@@ -35,7 +34,6 @@ basepython =
3534
py39: python3.9
3635
py310: python3.10
3736
py311: python3.11
38-
py312: python3.12
3937

4038
deps =
4139
clean: coverage

0 commit comments

Comments
 (0)