Skip to content

Commit

Permalink
Use Ubuntu 20.04 runner for tests
Browse files Browse the repository at this point in the history
GitHub has deprecated 18.04, so we can't continue running tests on that
old distribution. Unfortunately, we can't switch to the latest 22.04
since GitHub doesn't package anything older than Python 3.7 for that
runner.

And unfortunately the oldest version in 20.04 is Python 3.5, so we have
to remove the test runs for Python 3.4.
  • Loading branch information
CendioOssman committed Aug 23, 2023
1 parent e28b7c8 commit 3546681
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- 3.4
- 3.5
- 3.6
- 3.7
Expand Down

0 comments on commit 3546681

Please sign in to comment.