Skip to content

Commit

Permalink
workaround for missing macos-arm packages of arro3-core
Browse files Browse the repository at this point in the history
  • Loading branch information
keewis committed Oct 12, 2024
1 parent 84938a1 commit 6ca24de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ jobs:
python=${{matrix.python-version}}
conda
- name: Install arro3-core
run: >-
if [[ ${{matrix.os}} != "macos-latest" ]]; then
micromamba install arro3-core
fi
- name: Install xdggs
run: |
python -m pip install --no-deps -e .
Expand Down
2 changes: 1 addition & 1 deletion ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- typing-extensions
- geoarrow-pyarrow
- lonboard
- arro3-core
# - arro3-core # not available on macos
- pip
- pip:
- h3ronpy
3 changes: 3 additions & 0 deletions xdggs/tests/test_plotting.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import numpy as np
import pytest
import xarray as xr

pytest.importorskip("arro3.core")

from arro3.core import Array, Table

from xdggs import plotting
Expand Down

0 comments on commit 6ca24de

Please sign in to comment.