Skip to content

Commit

Permalink
try pin zarr under 2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
ljgray committed Jul 31, 2024
1 parent d95e4fa commit 906bed3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
lint-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v2
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- name: Install apt dependencies
run: |
Expand All @@ -42,25 +42,25 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.11"]
python-version: ["3.9", "3.12"]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install -y libopenmpi-dev openmpi-bin libhdf5-serial-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install pip dependencies
run: |
pip install "zarr<2.13"
pip install "zarr<2.16"
pip install -e .
pip install -e .[mpi]
pip install -e .[compression]
Expand All @@ -81,10 +81,10 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.12"

Expand Down

0 comments on commit 906bed3

Please sign in to comment.