Skip to content

Commit

Permalink
Removed python 3.11 from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertSamoilescu committed Nov 18, 2024
1 parent 26cf9ee commit e850c34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10']
include: # Run windows tests on only one python version
- os: windows-latest
python-version: '3.11'
python-version: '3.10'

steps:
- name: Checkout code
Expand Down
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.9', '3.10', '3.11' ]
python-version: ['3.9', '3.10']
include: # Run windows tests on only one python version
- os: windows-latest
python-version: '3.11'
python-version: '3.10'

steps:
- name: Checkout code
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.9', '3.10', '3.11' ]
python-version: ['3.9', '3.10' ]
include: # Run windows tests on only one python version
- os: windows-latest
python-version: '3.11'
python-version: '3.10'

steps:
- name: Checkout code
Expand Down

0 comments on commit e850c34

Please sign in to comment.