Skip to content

Fix macOS Python 3.10 #311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/ci-osx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,27 @@ jobs:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true

- name: Show info about `base` environment
shell: "bash -l {0}"
run: |
conda info
conda config --show-sources
conda list --show-channel-urls

- name: Set up env
shell: "bash -l {0}"
run: |
conda create -n env python==${{matrix.python-version}} wheel pip compilers
conda create -n env python=${{matrix.python-version}} wheel pip compilers 'clang>=12.0.1'
conda activate env
which pip
pip install -r requirements_test.txt -r requirements.txt
conda env export

- name: Show info about `env` environment
shell: "bash -l {0}"
run: |
conda list --show-channel-urls -n env

- name: Install numcodecs
shell: "bash -l {0}"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up env
shell: "bash -l {0}"
run: |
conda create -n env python==${{matrix.python-version}} wheel pip compilers
conda create -n env python=${{matrix.python-version}} wheel pip compilers
conda activate env
which pip
pip install -r requirements_test.txt -r requirements.txt
Expand Down