From a1494739f16b09716f24d193bdb21f41bbd93468 Mon Sep 17 00:00:00 2001 From: Jeffrey 'Alex' Clark Date: Tue, 2 Jun 2026 13:56:46 -0400 Subject: [PATCH 1/2] PYTHON-5387 Add beta Python 3.15 Per `uv` docs: - "Python pre-releases will be used if there is no other available installation matching the request." --- .github/workflows/test-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 2a70021cf7..78394becf5 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -59,7 +59,7 @@ jobs: matrix: # Tests currently only pass on ubuntu on GitHub Actions. os: [ubuntu-latest] - python-version: ["3.10", "pypy-3.11", "3.13t"] + python-version: ["3.10", "pypy-3.11", "3.13t", "3.15"] mongodb-version: ["8.0"] name: CPython ${{ matrix.python-version }}-${{ matrix.os }} From f8454ca7d174060bac120c8fc6e17bdb53853b4f Mon Sep 17 00:00:00 2001 From: Jeffrey 'Alex' Clark Date: Wed, 3 Jun 2026 14:22:30 -0400 Subject: [PATCH 2/2] Use a neutral label like "Python" to keep CI output accurate. Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/workflows/test-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 78394becf5..afb6e2e100 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -62,7 +62,7 @@ jobs: python-version: ["3.10", "pypy-3.11", "3.13t", "3.15"] mongodb-version: ["8.0"] - name: CPython ${{ matrix.python-version }}-${{ matrix.os }} + name: Python ${{ matrix.python-version }}-${{ matrix.os }} steps: - uses: actions/checkout@v6.0.2 with: