Skip to content

Commit

Permalink
make numba install conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapriot committed Oct 12, 2024
1 parent 786a3c4 commit 47610b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/environment_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ dependencies:
# optionals
- matplotlib
- utm
- numba

# documentation
- sphinx
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test_with_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
activate-environment: geoana-test
python-version: ${{ matrix.python-version }}

- name: Install numba
if: matrix.python-version != '3.13'
# Numba doesn't work on python 3.13 just yet, so conditionally install it into the environment:
run: |
conda install --yes -c conda-forge numba
- name: Conda information
run: |
conda info
Expand Down

0 comments on commit 47610b1

Please sign in to comment.