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