Skip to content

Commit

Permalink
DEV: Change 3.13-dev to 3.13 (#2899)
Browse files Browse the repository at this point in the history
Python 3.13.0 was released on October 7, 2024.
  • Loading branch information
j-t-1 authored Oct 11, 2024
1 parent 0ae7dac commit c8bfa5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c8bfa5f

Please sign in to comment.