Skip to content

Commit 9896c52

Browse files
authored
Merge pull request #729 from AA-Turner/misc
Update versions for testing
2 parents 5f8c75f + 9d00f25 commit 9896c52

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,16 @@ jobs:
2020
runs-on: ${{ matrix.platform }}
2121
strategy:
2222
matrix:
23-
platform: ["ubuntu-latest", "windows-latest"]
24-
python-version: [ "3.8", "3.9", "3.10", "3.11" , "3.12", "3.13" ]
23+
platform:
24+
- "ubuntu-latest"
25+
- "windows-latest"
26+
python-version:
27+
- "3.8"
28+
- "3.9"
29+
- "3.10"
30+
- "3.11"
31+
- "3.12"
32+
- "3.13"
2533
steps:
2634
- uses: actions/checkout@v4
2735

prepare_license_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
licenses_json = json.load(f)
1212

1313
condensed = {
14-
l['licenseId'].lower() : {'id': l['licenseId']}
14+
l['licenseId'].lower(): {'id': l['licenseId']}
1515
for l in licenses_json['licenses']
1616
if not l['isDeprecatedLicenseId']
1717
}

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{311,310,39,38,37,36},bootstrap
2+
envlist = py{314,313,312,311,310,39,38,37,36},bootstrap
33
skip_missing_interpreters = true
44

55
[gh-actions]
@@ -10,6 +10,9 @@ python =
1010
3.9: py39
1111
3.10: py310
1212
3.11: py311
13+
3.12: py312
14+
3.13: py313
15+
3.14: py314
1316

1417
[testenv]
1518
deps =

0 commit comments

Comments
 (0)