Skip to content

Commit 3229a74

Browse files
authored
Fix macOS Python 3.10 (#311)
1 parent fca7c73 commit 3229a74

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/ci-osx.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,27 @@ jobs:
2424
env:
2525
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
2626

27+
- name: Show info about `base` environment
28+
shell: "bash -l {0}"
29+
run: |
30+
conda info
31+
conda config --show-sources
32+
conda list --show-channel-urls
33+
2734
- name: Set up env
2835
shell: "bash -l {0}"
2936
run: |
30-
conda create -n env python==${{matrix.python-version}} wheel pip compilers
37+
conda create -n env python=${{matrix.python-version}} wheel pip compilers 'clang>=12.0.1'
3138
conda activate env
3239
which pip
3340
pip install -r requirements_test.txt -r requirements.txt
3441
conda env export
3542
43+
- name: Show info about `env` environment
44+
shell: "bash -l {0}"
45+
run: |
46+
conda list --show-channel-urls -n env
47+
3648
- name: Install numcodecs
3749
shell: "bash -l {0}"
3850
run: |

.github/workflows/ci-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up env
2828
shell: "bash -l {0}"
2929
run: |
30-
conda create -n env python==${{matrix.python-version}} wheel pip compilers
30+
conda create -n env python=${{matrix.python-version}} wheel pip compilers
3131
conda activate env
3232
which pip
3333
pip install -r requirements_test.txt -r requirements.txt

0 commit comments

Comments
 (0)