Add wrappers for zarr v3 #1038
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OSX CI | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Conda | |
uses: conda-incubator/[email protected] | |
with: | |
channels: conda-forge | |
miniforge-version: latest | |
python-version: ${{ matrix.python-version }} | |
- 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 | |
c-compiler cxx-compiler 'clang>=12.0.1' | |
python=${{matrix.python-version}} wheel pip | |
- 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: | | |
conda activate env | |
export DISABLE_NUMCODECS_AVX2="" | |
python -m pip install -v -e .[test,test_extras,msgpack,zfpy,pcodec] | |
- name: Install zarr-python | |
shell: "bash -l {0}" | |
run: | | |
conda activate env | |
python -m pip install zarr==3.0.0a0 | |
- name: List installed packages | |
shell: "bash -l {0}" | |
run: | | |
conda activate env | |
python -m pip list | |
- name: Run tests | |
shell: "bash -l {0}" | |
run: | | |
conda activate env | |
pytest -v | |
- uses: codecov/codecov-action@v3 | |
with: | |
#token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
#files: ./coverage1.xml,./coverage2.xml # optional | |
#flags: unittests # optional | |
#name: codecov-umbrella # optional | |
#fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) |