Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing python 3.13 #167

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/measure_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# this will be the latest version of python supported.
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
python-version: ["3.13"]
steps:
# -- General Setup Steps
- uses: actions/checkout@v4
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
# this will be the latest MATLAB release supported.
matrix:
os: [ubuntu-latest]
matlab-release: ["R2024a"]
matlab-release: ["R2024b"]
steps:
# -- General Setup Steps
- name: Checkout IBCDFO repository
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test_matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-12, macos-13, macos-14]
matlab-release: ["R2022a", "R2022b", "R2023a", "R2023b", "R2024a"]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, macos-15]
matlab-release: ["R2022a", "R2022b", "R2023a", "R2023b", "R2024a", "R2024b"]
exclude:
# Failing with a possible issue outside IBCDFO (Issue #157)
- os: macos-14
matlab-release: "R2023b"
- os: macos-15
matlab-release: "R2023b"
steps:
# -- General Setup Steps
- name: Checkout IBCDFO repository
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ jobs:
# python-versions must be maintained consistent with associated setup.py
# and tox.ini configuration.
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-12, macos-13, macos-14]
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, macos-15]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: macos-14
python-version: "3.9"
- os: macos-15
python-version: "3.9"
steps:
# -- General Setup Steps
- uses: actions/checkout@v4
Expand Down
Loading