Skip to content

Commit 06dc7f9

Browse files
committed
Manually specify dependencies to install with conda
1 parent 65b3563 commit 06dc7f9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,13 @@ jobs:
5050
- if: matrix.os == 'macos-latest'
5151
name: Install dependencies with conda on MacOS
5252
# Avoid OpenMP runtime incompatibility when using PyPI wheels
53+
# by installing torch and healpy using conda
5354
# https://github.com/healpy/healpy/issues/1012
5455
run: |
55-
conda install conda-pypi
56-
conda pip install ".[tests]"
56+
conda install jax "jax>=0.3.13,<0.6.0" "numpy>=1.20,<2" ducc0 healpy torch pytest pytest-cov
57+
python -m pip install --upgrade pip
58+
pip install --no-deps so3 pyssht
59+
pip install --no-deps .
5760
5861
- if: matrix.os != 'macos-latest'
5962
name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)