Skip to content

Commit

Permalink
Merge pull request #729 from AA-Turner/misc
Browse files Browse the repository at this point in the history
Update versions for testing
  • Loading branch information
takluyver authored Feb 24, 2025
2 parents 5f8c75f + 9d00f25 commit 9896c52
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,16 @@ jobs:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
python-version: [ "3.8", "3.9", "3.10", "3.11" , "3.12", "3.13" ]
platform:
- "ubuntu-latest"
- "windows-latest"
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion prepare_license_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
licenses_json = json.load(f)

condensed = {
l['licenseId'].lower() : {'id': l['licenseId']}
l['licenseId'].lower(): {'id': l['licenseId']}
for l in licenses_json['licenses']
if not l['isDeprecatedLicenseId']
}
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{311,310,39,38,37,36},bootstrap
envlist = py{314,313,312,311,310,39,38,37,36},bootstrap
skip_missing_interpreters = true

[gh-actions]
Expand All @@ -10,6 +10,9 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314

[testenv]
deps =
Expand Down

0 comments on commit 9896c52

Please sign in to comment.