Skip to content
Draft
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/integration_app_harness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
state_manager: ["redis", "memory"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14", "3.15"]
Comment thread
cubic-dev-ai[bot] marked this conversation as resolved.
split_index: [1, 2]
fail-fast: false
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
matrix:
state_manager: ["redis", "memory"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14", "3.15"]
fail-fast: false
runs-on: ubuntu-22.04
services:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
matrix:
# Show OS combos first in GUI
os: [ubuntu-latest, windows-latest]
python-version: ["3.14"]
python-version: ["3.14", "3.15"]

runs-on: ${{ matrix.os }}
steps:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
python-version: "3.15"
allow-prereleases: true

- name: Install dependencies
run: uv sync --all-extras --dev
Expand All @@ -58,7 +59,7 @@ jobs:

- uses: ./.github/actions/setup_build_env
with:
python-version: "3.14"
python-version: "3.15"
node-version: "22"
run-uv-sync: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: The unit-tests matrix adds "3.15", but the sibling unit-tests-macos matrix in the same file still only lists 3.10–3.14. Since this PR is titled "Added Test support for Python 3.15" and every other workflow already runs 3.15 on linux/windows, Python 3.15 is left untested on macos (the macos job runs on every main push). Add "3.15" to the macos matrix as well, or confirm the omission is intentional.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/unit_tests.yml, line 31:

<comment>The `unit-tests` matrix adds "3.15", but the sibling `unit-tests-macos` matrix in the same file still only lists 3.10–3.14. Since this PR is titled "Added Test support for Python 3.15" and every other workflow already runs 3.15 on linux/windows, Python 3.15 is left untested on macos (the macos job runs on every main push). Add "3.15" to the macos matrix as well, or confirm the omission is intentional.</comment>

<file context>
@@ -28,7 +28,7 @@ jobs:
       matrix:
         os: [ubuntu-latest, windows-latest]
-        python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
+        python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
     runs-on: ${{ matrix.os }}
 
</file context>

runs-on: ${{ matrix.os }}

# Service containers to run with `runner-job`
Expand Down