Skip to content

Commit

Permalink
Update Python versions for testing (#392)
Browse files Browse the repository at this point in the history
* Update Python versions for CI testing

We were still testing with 3.7 and 3.8 which have gone end-of-line. We were also not testing with modern supported versions.
Also specified which branches to run CI testing on.
  • Loading branch information
MatthewHambley authored Mar 5, 2025
1 parent fb6a094 commit 8b6a0d0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Build

on: [push, pull_request]
on:
push:
branches:
- main
- v*.*
pull_request:
branches:
- main
- v*.*

jobs:
build:
Expand All @@ -9,7 +17,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
# Should this step use a cache?
Expand Down

0 comments on commit 8b6a0d0

Please sign in to comment.