Skip to content

Commit 4246dbb

Browse files
authored
Change Ubuntu version in CI workflow (#222)
* Change Ubuntu version in CI workflow Updated the workflow to use Ubuntu 22.04 instead of 20.04. * Exclude Python 3.6 on ubuntu-22.04 in CI workflow Added exclusion for Python 3.6 on ubuntu-22.04 in workflow.
1 parent 2a65473 commit 4246dbb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
runs-on: [ubuntu-20.04, ubuntu-latest, macOS-latest]
9+
runs-on: [ubuntu-22.04, ubuntu-latest, macOS-latest]
1010
python-version: [ '3.6', '3.8', '3.9', '3.11']
1111
exclude:
1212
- runs-on: ubuntu-latest
1313
python-version: '3.6'
14+
- runs-on: ubuntu-22.04
15+
python-version: '3.6'
1416
- runs-on: macOS-latest
1517
python-version: '3.6'
1618
fail-fast: false

0 commit comments

Comments
 (0)