Skip to content

Commit

Permalink
ci: Only install numba in non-3.12 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
b-butler committed Jan 10, 2024
1 parent 830bc79 commit 6a65777
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,15 @@ jobs:
- name: Update pip/build packages
run: |
pip install setuptools --upgrade
pip install pip --upgrade
- name: Install newest dependencies
run: |
pip install -r requirements/requirements-test.txt
pip install -r requirements/requirements-data.txt
pip install -r requirements/requirements-jit.txt
if: ${{ matrix.dependencies == 'newest' }}
- name: Install numba (if available)
run: |
pip install -r requirements/requirements-jit.txt
if: ${{ matrix.python != '3.12' }}
- name: Install the package
run: |
pip install -e .
Expand Down

0 comments on commit 6a65777

Please sign in to comment.