Skip to content

Commit

Permalink
TST Use older ubuntu to test on older Python
Browse files Browse the repository at this point in the history
  • Loading branch information
luispedro committed May 26, 2023
1 parent 1eead0d commit e64b343
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@ on: [ push, pull_request ]
jobs:
build:

runs-on: ubuntu-latest
# We need to use an older version of ubuntu to support older versions of Python
# https://github.com/actions/setup-python/issues/544
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit e64b343

Please sign in to comment.