Skip to content

Commit

Permalink
Add notebooks tests for 3.11 (#840) (#841)
Browse files Browse the repository at this point in the history
* Add notebooks tests for 3.11

* Use Python 3.10 for Windows and MacOS notebook tests
  • Loading branch information
jklaise authored Jul 18, 2023
1 parent e9d3dcd commit 8219ec3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_all_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
fail-fast: false # Continue to run other builds despite a failure
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.9', '3.10' ]
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.10' # torch 1.x not available on Windows or MacOS for Python 3.11
- os: macos-latest
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_changed_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.9', '3.10' ]
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.10' # torch 1.x not available on Windows or MacOS for Python 3.11
- os: macos-latest
python-version: '3.10'

Expand Down

0 comments on commit 8219ec3

Please sign in to comment.