From 431e8306dfd7f7d9e840d6536a904debe62d3ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9phine=20Wolf=20Oberholtzer?= Date: Mon, 23 Sep 2024 11:47:34 -0400 Subject: [PATCH] Add Python 3.13 to build matrix --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd931a7ee..57a1fe6e8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -106,7 +106,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"] include: - os: macos-12 python-version: "3.12" @@ -118,9 +118,9 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} - cache: pip cache-dependency-path: "**/pyproject.toml" + cache: pip + python-version: ${{ matrix.python-version }} - name: Upgrade pip run: python3 -m pip install -U pip - name: Install Supriya