Skip to content

Commit

Permalink
add 3.13 back
Browse files Browse the repository at this point in the history
conditionally install numba
  • Loading branch information
jcapriot committed Oct 13, 2024
1 parent c736d28 commit 099a47d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/environment_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dependencies:
- pydata-sphinx-theme==0.15.4
- sphinx-gallery>=0.1.13
- numpydoc>=1.5
- discretize
- jupyter
- graphviz
- pillow
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test_with_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -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:
run: |
conda install --yes -c conda-forge numba
- name: Conda information
run: |
conda info
Expand Down

0 comments on commit 099a47d

Please sign in to comment.