Skip to content

Commit

Permalink
Update to include references to Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ronf committed Oct 14, 2023
1 parent bb45b65 commit 5ca8487
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: macos-latest
python-version: "3.10"
openssl-version: "3"
- os: macos-latest
python-version: "3.11"
openssl-version: "3"
- os: macos-latest
python-version: "3.12"
openssl-version: "3"
exclude:
# test hangs on these combination
- os: windows-latest
Expand All @@ -26,6 +29,8 @@ jobs:
python-version: "3.10"
- os: windows-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.12"

runs-on: ${{ matrix.os }}
env:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,12 @@
'License :: OSI Approved',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ skip_missing_interpreters = True
envlist =
clean
report
py3{7,8,9,10,11}-{linux,darwin,windows}
py3{7,8,9,10,11,12}-{linux,darwin,windows}

[testenv]
deps =
Expand Down Expand Up @@ -53,7 +53,7 @@ commands =
coverage html
coverage xml
depends =
py3{7,8,9,10,11}-{linux,darwin,windows}
py3{7,8,9,10,11,12}-{linux,darwin,windows}

[pytest]
testpaths = tests

0 comments on commit 5ca8487

Please sign in to comment.