From d95c0d5a4441249346197dfa1f7b459d1ffd9fbf Mon Sep 17 00:00:00 2001 From: Aki Nitta Date: Fri, 14 Jan 2022 00:01:31 +0900 Subject: [PATCH] Upgrade Ubuntu version from `18.04` to `20.04` (#11395) Co-authored-by: Jirka Borovec Co-authored-by: Carlos Mocholi --- .github/workflows/ci_test-full.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_test-full.yml b/.github/workflows/ci_test-full.yml index 6cd4108c7f..a4c4312777 100644 --- a/.github/workflows/ci_test-full.yml +++ b/.github/workflows/ci_test-full.yml @@ -17,13 +17,13 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-18.04, windows-2019, macOS-10.15] + os: [ubuntu-20.04, windows-2019, macOS-10.15] python-version: ["3.7", "3.9"] # minimum, maximum requires: ["oldest", "latest"] release: ["stable"] exclude: # Skip if torch<1.8 and py3.9 on Linux: https://github.com/pytorch/pytorch/issues/50014 - - {os: ubuntu-18.04, python-version: "3.9", requires: "oldest", release: "stable"} + - {os: ubuntu-20.04, python-version: "3.9", requires: "oldest"} #include: # nightly: add when there's a release candidate #- {os: ubuntu-20.04, python-version: "3.10", requires: "latest", release: "pre"}