Skip to content

Commit 790e799

Browse files
committed
use Python 3.13 in the tests
1 parent 6fce0d6 commit 790e799

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
jobs:
1313
build-docs:
1414
runs-on: ubuntu-latest
15+
defaults:
16+
run:
17+
shell: bash -l {0}
1518

1619
steps:
1720
- name: checkout
@@ -31,12 +34,10 @@ jobs:
3134
--channel conda-forge
3235
3336
- name: Install ioos_qc
34-
shell: bash -l {0}
3537
run: |
3638
python -m pip install -e . --no-deps --force-reinstall
3739
3840
- name: Build documentation
39-
shell: bash -l {0}
4041
run: >
4142
set -e
4243
pushd docs

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Default-Tests
1+
name: Full Tests
22

33
on:
44
pull_request:
@@ -10,8 +10,8 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
14-
os: [ubuntu-latest]
13+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
14+
os: [ windows-latest, ubuntu-latest, macos-latest ]
1515
numba: [true, false]
1616
fail-fast: false
1717
defaults:
@@ -44,4 +44,4 @@ jobs:
4444
4545
- name: Tests
4646
run: |
47-
python -m pytest --disable-warnings
47+
python -m pytest --disable-warnings --pyargs ioos_qc

0 commit comments

Comments
 (0)