Skip to content

Commit 389f402

Browse files
authored
Merge pull request #260 from RemiLehe/fix-ci-tests
Fix CI
2 parents b318429 + aaa917d commit 389f402

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/unix-openmpi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
- shell: bash -l {0}
2929
name: Install dependencies
3030
run: |
31-
conda install numpy pandas pytorch cpuonly -c pytorch
32-
conda install -c conda-forge mpi4py openmpi
31+
conda install numpy=1 pandas pytorch cpuonly -c pytorch
32+
conda install -c conda-forge mpi4py openmpi=5.*
3333
pip install .[test]
3434
- shell: bash -l {0}
3535
name: Run unit tests with openMPI

.github/workflows/unix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- shell: bash -l {0}
2929
name: Install dependencies
3030
run: |
31-
conda install numpy pandas pytorch cpuonly -c pytorch
31+
conda install numpy=1 pandas pytorch cpuonly -c pytorch
3232
conda install -c conda-forge mpi4py mpich
3333
pip install .[test]
3434
- shell: bash -l {0}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ repos:
6464

6565
# Autoremoves unused Python imports
6666
- repo: https://github.com/hadialqattan/pycln
67-
rev: v2.4.0
67+
rev: v2.5.0
6868
hooks:
6969
- id: pycln
7070
name: pycln (python)

0 commit comments

Comments
 (0)