From 493f0e6bf233bc425844900a64e7af98e027cf84 Mon Sep 17 00:00:00 2001 From: Aki Nitta Date: Fri, 7 Jan 2022 22:09:52 +0900 Subject: [PATCH] Skip testing with PyTorch 1.7 and Python 3.9 on Ubuntu (#11217) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Carlos MocholĂ­ --- .github/workflows/ci_test-full.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_test-full.yml b/.github/workflows/ci_test-full.yml index ad600623dfba0..ad8e27e263c2d 100644 --- a/.github/workflows/ci_test-full.yml +++ b/.github/workflows/ci_test-full.yml @@ -28,6 +28,9 @@ jobs: - {os: macOS-10.15, python-version: "3.6", requires: "oldest", release: "stable"} # nightly: add when there's a release candidate #- {os: ubuntu-20.04, python-version: "3.10", requires: "latest", release: "pre"} + 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"} timeout-minutes: 40