Skip to content

Commit f1bc646

Browse files
Merge pull request #128 from PyLops/python3.13
Update build.yml to support python3.13
2 parents 89fcf22 + 76a3076 commit f1bc646

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.github/workflows/build.yml

+1-11
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,12 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, macos-latest]
17-
python-version: ['3.9', '3.10', '3.11', '3.12']
17+
python-version: ['3.10', '3.11', '3.12', '3.13']
1818
mpi: ['mpich', 'openmpi', 'intelmpi']
1919
rank: ['2', '3', '4']
2020
exclude:
2121
- os: macos-latest
2222
mpi: 'intelmpi'
23-
# MPICH v4 fails on Ubuntu for Python <3.10
24-
# ”libfabric EFA provider is operating in a
25-
# condition that could result in memory
26-
# corruption”
27-
- os: ubuntu-latest
28-
python-version: '3.8'
29-
mpi: 'mpich'
30-
- os: ubuntu-latest
31-
python-version: '3.9'
32-
mpi: 'mpich'
3323
runs-on: ${{ matrix.os }}
3424
steps:
3525
- name: Checkout

.github/workflows/deploy-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: 3.9
24+
python-version: 3.11
2525

2626
- name: Install dependencies
2727
run: |

.github/workflows/flake.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python environment
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: "3.8"
17+
python-version: "3.11"
1818
- name: flake8 Lint
1919
uses: py-actions/flake8@v2
2020
with:

0 commit comments

Comments
 (0)