Skip to content

Commit c8bfa5f

Browse files
authored
DEV: Change 3.13-dev to 3.13 (#2899)
Python 3.13.0 was released on October 7, 2024.
1 parent 0ae7dac commit c8bfa5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/github-ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-20.04
5858
strategy:
5959
matrix:
60-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
60+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
6161
use-crypto-lib: ["cryptography"]
6262
include:
6363
- python-version: "3.8"
@@ -90,7 +90,7 @@ jobs:
9090
cache-dependency-path: '**/requirements/ci.txt'
9191
- name: Setup Python (3.11+)
9292
uses: actions/setup-python@v5
93-
if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13-dev'
93+
if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13'
9494
with:
9595
python-version: ${{ matrix.python-version }}
9696
allow-prereleases: true
@@ -106,7 +106,7 @@ jobs:
106106
- name: Install requirements (Python 3.11+)
107107
run: |
108108
pip install -r requirements/ci-3.11.txt
109-
if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13-dev'
109+
if: matrix.python-version == '3.11' || matrix.python-version == '3.12' || matrix.python-version == '3.13'
110110
- name: Remove pycryptodome and cryptography
111111
run: |
112112
pip uninstall pycryptodome cryptography -y

0 commit comments

Comments
 (0)