From 776892855f301c9d57e00fdb4374490736a4e6fe Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sat, 11 Oct 2025 17:31:56 -0400 Subject: [PATCH] Add Python 3.13 setup step to test workflow Added step to set up Python 3.13 in the workflow. --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3031858eb1..503f691ec6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,6 +48,11 @@ jobs: - name: Clone uses: actions/checkout@v4 + - name: Set up Python 3.13 + uses: actions/setup-python@v5 + with: + python-version: '3.13' + - name: Setup MacOS if: matrix.os == 'macos' run: |