Skip to content

Commit

Permalink
Undo rename
Browse files Browse the repository at this point in the history
  • Loading branch information
carmocca committed Nov 2, 2021
1 parent 739a42d commit 74115ad
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci_test-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
matrix:
os: [ubuntu-18.04, windows-2019, macOS-10.15]
python-version: ["3.7", "3.9"] # minimum, maximum
requires: ["oldest", "latest"]
requires: ["minimal", "latest"]
release: ["stable"]
include:
# test 3.6 only on oldest until EOL: https://github.com/PyTorchLightning/pytorch-lightning/issues/9981
- {os: ubuntu-18.04, python-version: "3.6", requires: "oldest", release: "stable"}
- {os: windows-2019, python-version: "3.6", requires: "oldest", release: "stable"}
- {os: macOS-10.15, python-version: "3.6", requires: "oldest", release: "stable"}
- {os: ubuntu-18.04, python-version: "3.6", requires: "minimal", release: "stable"}
- {os: windows-2019, python-version: "3.6", requires: "minimal", release: "stable"}
- {os: macOS-10.15, python-version: "3.6", requires: "minimal", release: "stable"}
# nightly: add when there's a release candidate
#- {os: ubuntu-20.04, python-version: "3.10", requires: "latest", release: "pre"}
exclude:
# PyTorch 1.6 is not available with Python 3.9: https://github.com/pytorch/pytorch/issues/46205
- {os: ubuntu-18.04, python-version: "3.9", requires: "oldest", release: "stable"}
- {os: windows-2019, python-version: "3.9", requires: "oldest", release: "stable"}
- {os: macOS-10.15, python-version: "3.9", requires: "oldest", release: "stable"}
- {os: ubuntu-18.04, python-version: "3.9", requires: "minimal", release: "stable"}
- {os: windows-2019, python-version: "3.9", requires: "minimal", release: "stable"}
- {os: macOS-10.15, python-version: "3.9", requires: "minimal", release: "stable"}

# Timeout: https://stackoverflow.com/a/59076067/4521646
# TODO: the macOS is taking too long, probably caching did not work...
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
python .github/prune-packages.py requirements/extra.txt "horovod"
- name: Set min. dependencies
if: matrix.requires == 'oldest'
if: matrix.requires == 'minimal'
run: |
python .github/set-min-requirements.py
Expand Down

0 comments on commit 74115ad

Please sign in to comment.