Skip to content

Commit 6b7628f

Browse files
committed
[CI]: Enable testing against Python 3.12, 3.13
This required updating the OpenAssetIO version to the latest, which has wheels for these Python versions. Note that 3.14 is not tested, as there is no current VFX reference platform using this versiony yet.
1 parent 1aac026 commit 6b7628f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# tests/requirements.txt specifies a range. Also see
2626
# build_openassetio action.
2727
run: |
28-
python -m pip install openassetio==1.0.0rc1.rev0
28+
python -m pip install openassetio==1.0.2
2929
python -m pip install -r requirements.txt
3030
python -m pip install -r tests/requirements.txt
3131

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ['windows-2022', 'ubuntu-22.04', 'macos-15-intel']
21-
python: ["3.10", "3.11"]
21+
python: ["3.10", "3.11", "3.12", "3.13"]
2222
steps:
2323
- uses: actions/checkout@v7
2424

@@ -29,7 +29,7 @@ jobs:
2929
# tests/requirements.txt specifies a range. Also see
3030
# build_openassetio action.
3131
- run: |
32-
python -m pip install openassetio==1.0.0rc1.rev0
32+
python -m pip install openassetio==1.0.2
3333
python -m pip install -r tests/requirements.txt
3434
python -m pip install .
3535
- name: Test

0 commit comments

Comments
 (0)