Skip to content

Commit

Permalink
MAINT: Add Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Jul 29, 2023
1 parent 94f23f9 commit c279580
Show file tree
Hide file tree
Showing 3 changed files with 5 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 @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-beta.4"]
use-crypto-lib: ["pycryptodome"]
include:
- python-version: "3.9"
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:
- name: Install requirements (Python 3)
run: |
pip install -r requirements/ci.txt
if: matrix.python-version != '3.11'
if: matrix.python-version < '3.11'
- name: Install requirements (Python 3.11)
run: |
pip install -r requirements/ci-3.11.txt
if: matrix.python-version == '3.11'
if: matrix.python-version >= '3.11'
- name: Remove pycryptodome
run: |
pip uninstall pycryptodome -y
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
Expand Down

0 comments on commit c279580

Please sign in to comment.