Skip to content

Commit

Permalink
use Python 3.13 in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Oct 30, 2024
1 parent 2ab0bfc commit ef9bee9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
jobs:
build-docs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}

steps:
- name: checkout
Expand All @@ -31,12 +34,10 @@ jobs:
--channel conda-forge
- name: Install ioos_qc
shell: bash -l {0}
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Build documentation
shell: bash -l {0}
run: >
set -e
pushd docs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Default-Tests
name: Full Tests

on:
pull_request:
Expand All @@ -10,8 +10,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
os: [ubuntu-latest]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
os: [ windows-latest, ubuntu-latest, macos-latest ]
numba: [true, false]
fail-fast: false
defaults:
Expand Down Expand Up @@ -44,4 +44,4 @@ jobs:
- name: Tests
run: |
python -m pytest --disable-warnings
python -m pytest --disable-warnings --pyargs ioos_qc

0 comments on commit ef9bee9

Please sign in to comment.