Skip to content

Commit 4fc7333

Browse files
committed
tag ubuntu version for 3.6
1 parent 3e116f6 commit 4fc7333

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ on:
1111
jobs:
1212
build:
1313

14-
runs-on: ubuntu-latest
14+
# Tag ubuntu version to 20.04, in order to support python 3.6
15+
# See issue: https://github.com/actions/setup-python/issues/544
16+
# When ready to drop 3.6, can revert from 'ubuntu-20.04' -> 'ubuntu-latest'
17+
runs-on: ubuntu-20.04
1518
env:
1619
MODULE_NAME: fooof
1720
strategy:
1821
matrix:
19-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
20-
#python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
22+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2123

2224
steps:
2325
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)