diff options
-rw-r--r-- | .github/workflows/test-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml index 0b9ef72c..bf53b406 100644 --- a/.github/workflows/test-ci.yml +++ b/.github/workflows/test-ci.yml | |||
@@ -13,7 +13,8 @@ jobs: | |||
13 | strategy: | 13 | strategy: |
14 | fail-fast: false | 14 | fail-fast: false |
15 | matrix: | 15 | matrix: |
16 | os: [ubuntu-latest, macos-latest, windows-latest] | 16 | # ubuntu-20.04 is the last version that supports python 3.6 |
17 | os: [ubuntu-20.04, macos-latest, windows-latest] | ||
17 | python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] | 18 | python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] |
18 | runs-on: ${{ matrix.os }} | 19 | runs-on: ${{ matrix.os }} |
19 | 20 | ||