From 00f2b2b97743974de3c081dba9795beed245ce03 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Mon, 28 Oct 2024 14:36:39 -0400 Subject: [PATCH] CI: add 3.13t to build matrix on CI --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e947689c3..bf5d63014 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,6 +53,8 @@ jobs: tox_env: py312-full - python: '3.13' tox_env: py313-full + - python: '3.13t' + tox_env: py313-full - python: '3.14.0-alpha.1 - 3.14' tox_env: py314-full - python: 'pypy-3.10' @@ -67,8 +69,15 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 name: Install Python + if: matrix.python != '3.13t' with: python-version: ${{ matrix.python}} + - name: Install Python + uses: deadsnakes/action@e640ac8743173a67cca4d7d77cd837e514bf98e8 # v3.2.0 + if: matrix.python == '3.13t' + with: + python-version: '3.13' + nogil: true - name: Install apt packages run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev - name: Install tox