Skip to content

Commit af21b95

Browse files
authored
CI: Python 3.10 in CI (until scikit-fmm is fixed)
Temporarily use Python 3.10 in CI (until scikit-fmm is fixed)
1 parent f94d550 commit af21b95

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PyLops
1+
name: PyLops Testing
22

33
on: [push, pull_request]
44

@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
platform: [ ubuntu-latest, macos-13 ]
10-
python-version: ["3.10", "3.11"]
10+
python-version: ["3.10", ] # "3.11" temporarely removed due to issues with scikit-fmm
1111

1212
runs-on: ${{ matrix.platform }}
1313
steps:
@@ -30,6 +30,6 @@ jobs:
3030
run: |
3131
python -m setuptools_scm
3232
pip install .
33-
- name: Test with pytest
33+
- name: Tests with pytest
3434
run: |
3535
pytest

.github/workflows/codacy-coverage-reporter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
platform: [ ubuntu-latest, ]
12-
python-version: ["3.11", ]
12+
python-version: ["3.10", ]
1313

1414
runs-on: ${{ matrix.platform }}
1515
steps:

azure-pipelines.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,26 @@ jobs:
1818
# displayName: 'Windows'
1919
#
2020
# pool:
21-
# vmImage: 'windows-2019'
21+
# vmImage: 'windows-2025'
2222
#
2323
# variables:
2424
# NUMBA_NUM_THREADS: 1
2525
#
2626
# steps:
2727
# - task: UsePythonVersion@0
2828
# inputs:
29-
# versionSpec: '3.9'
29+
# versionSpec: '3.10'
3030
# architecture: 'x64'
3131
#
3232
# - script: |
3333
# python -m pip install --upgrade pip setuptools wheel django
3434
# pip install -r requirements-dev.txt
35+
# pip install -r requirements-torch.txt
3536
# pip install .
3637
# displayName: 'Install prerequisites and library'
3738
#
3839
# - script: |
39-
# python setup.py test
40+
# pytest
4041
# condition: succeededOrFailed()
4142
# displayName: 'Run tests'
4243

@@ -55,7 +56,7 @@ jobs:
5556
steps:
5657
- task: UsePythonVersion@0
5758
inputs:
58-
versionSpec: '3.11'
59+
versionSpec: '3.10'
5960
architecture: 'x64'
6061

6162
- script: |
@@ -85,7 +86,7 @@ jobs:
8586
steps:
8687
- task: UsePythonVersion@0
8788
inputs:
88-
versionSpec: '3.11'
89+
versionSpec: '3.10'
8990
architecture: 'x64'
9091

9192
- script: |

0 commit comments

Comments
 (0)