Skip to content

Commit 3caf939

Browse files
Enrico Usaienrico-usai
authored andcommitted
Run Python 3.6 tests on Ubuntu 20
The action was failing with the error "Version 3.6 with arch x64 not found" The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json This is a known issue when using `ubuntu-latest` because Ubuntu 22 does not have any Python 3.6 version available. actions/setup-python#544 Signed-off-by: Enrico Usai <[email protected]>
1 parent 8f4e25e commit 3caf939

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [ubuntu-latest]
28+
# To run Python 3.6 we can only use up to Ubuntu 20: https://github.com/actions/setup-python/issues/544
29+
os: [ubuntu-20.04]
2930
name:
3031
- Python 3.6 Tests
3132
- Python 3.7 Tests

0 commit comments

Comments
 (0)