Skip to content

Commit 0385953

Browse files
committed
chore(ci): disable py3.6 tests on ubuntu-20.04
GitHub Actions dropped support of ubuntu-20.04 runners, there is no obvious solution anymore to setup python 3.6. Tests on this environment are disabled until a durable solution is found.
1 parent fc72301 commit 0385953

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
include:
2020
- os: "ubuntu-22.04"
2121
python-version: "3.7"
22-
- os: "ubuntu-20.04"
23-
python-version: "3.6"
22+
# ubuntu-20.04 runners are disabled in GitHub actions, Python 3.6 must
23+
# be disabled until we find a solution.
24+
#- os: "ubuntu-20.04"
25+
# python-version: "3.6"
2426
runs-on: ${{ matrix.os }}
2527
steps:
2628
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)