From 5445ad2e5c81953876cec1bbe7ca6cdbbec0b55c Mon Sep 17 00:00:00 2001 From: Janis Klaise Date: Mon, 17 Jul 2023 15:48:28 +0100 Subject: [PATCH] Run Windows and MacOS CI on Python 3.11 (#947) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0a602fc2..478b6ff93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,9 +38,9 @@ jobs: python-version: [ '3.8', '3.9', '3.10', '3.11'] include: # Run macos and windows tests on only one python version - os: windows-latest - python-version: '3.9' # PyTorch doesn't yet have 3.10 support on Windows (https://pytorch.org/get-started/locally/#windows-python) + python-version: '3.11' - os: macos-latest - python-version: '3.10' + python-version: '3.11' steps: - name: Checkout code