From ba4e09e2635b147b36dc64bd11e755da1d8753fa Mon Sep 17 00:00:00 2001 From: j-t-1 <120829237+j-t-1@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:31:56 +0100 Subject: [PATCH] DEV: Change 3.13-dev to 3.13 Python 3.13.0 was released on October 7, 2024. --- .github/workflows/github-ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-ci.yaml b/.github/workflows/github-ci.yaml index 6cf28f394..01c46cf9f 100644 --- a/.github/workflows/github-ci.yaml +++ b/.github/workflows/github-ci.yaml @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] use-crypto-lib: ["cryptography"] include: - python-version: "3.8" @@ -90,7 +90,7 @@ jobs: cache-dependency-path: '**/requirements/ci.txt' - name: Setup Python (3.11+) uses: actions/setup-python@v5 - if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13-dev' + if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13' with: python-version: ${{ matrix.python-version }} allow-prereleases: true @@ -106,7 +106,7 @@ jobs: - name: Install requirements (Python 3.11+) run: | pip install -r requirements/ci-3.11.txt - if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13-dev' + if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13' - name: Remove pycryptodome and cryptography run: | pip uninstall pycryptodome cryptography -y