From f09b2e5a81ea3ca108ccc972b65966ec363a4e78 Mon Sep 17 00:00:00 2001 From: Erik Wrede Date: Mon, 21 Nov 2022 15:40:05 +0100 Subject: [PATCH] housekeeping: pin ubuntu to 20.04 for python 3.6 Ubuntu:latest doesn't include py36 anymore. Keep this until we add 3.11 and drop 3.6. See: https://github.com/actions/setup-python/issues/544 https://github.com/rwth-i6/returnn/issues/1226 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9df18f99..6635a35b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: - {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39} - {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38} - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} - - {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36} + - {name: '3.6', python: '3.6', os: ubuntu-20.04, tox: py36} steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4