Skip to content
Open
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
34 changes: 29 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false

matrix:
include:
- case-name: ubuntu-python3.11
Expand Down Expand Up @@ -40,6 +42,21 @@ jobs:
qutip-version: "@master"
python-version: "3.12"

- case-name: ubuntu-python3.13
os: ubuntu-latest
qutip-version: "@master"
python-version: "3.13"

- case-name: macOs-python3.13
os: macOS-latest
qutip-version: "@master"
python-version: "3.13"

- case-name: windows-python3.13
os: windows-latest
qutip-version: "@master"
python-version: "3.13"

steps:
- uses: actions/checkout@v6

Expand All @@ -48,6 +65,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade packaging tooling
run: |
python -m pip install --upgrade pip setuptools wheel

- name: Install QuTiP from GitHub
if: ${{ matrix.qutip-version == '@master' }}
run: |
Expand All @@ -58,9 +79,9 @@ jobs:
run: |
python -m pip install 'git+https://github.com/qutip/qutip-qtrl.git'

- name: Install fixed version jax and jaxlib
- name: Install JAX and jaxlib
run: |
python -m pip install 'jax==0.4.28' 'jaxlib==0.4.28'
python -m pip install jax jaxlib

- name: Install qutip-jax from GitHub
if: ${{ matrix.qutip-version == '@master' }}
Expand Down Expand Up @@ -91,11 +112,14 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.13"

- name: Upgrade packaging tooling
run: |
python -m pip install --upgrade pip setuptools wheel

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r doc/requirements.txt
python -m pip install .

Expand All @@ -109,7 +133,7 @@ jobs:
needs: [cases]
runs-on: ubuntu-latest

container: python:3-slim
container: python:3.13-slim

steps:
- name: Finalise coverage reporting
Expand Down
Loading