Skip to content

Commit f36ca6a

Browse files
fix(ci): python 3.6 no longer available
Python 3.6 x64 is no longer supported for `ubuntu-latest` (i.e. `ubuntu-22.04`). The recommended fix is to hardcode `ubuntu-20.04`. See: actions/setup-python#544
1 parent bc4bacb commit f36ca6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
10-
platform: [ubuntu-latest, macos-latest, windows-latest]
10+
platform: [ubuntu-20.04, macos-latest, windows-latest]
1111
runs-on: ${{ matrix.platform }}
1212
steps:
1313
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)