Skip to content

Commit

Permalink
Support Python 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
manicmaniac committed Nov 30, 2024
1 parent 13c150c commit 05d3335
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'
- run: pip install . matplotlib pycryptodome rc4
- run: nice -19 python benchmark.py -o benchmark.svg
- uses: actions/upload-artifact@v4
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'
- run: python setup.py sdist --verbose
- uses: actions/upload-artifact@v4
with:
Expand All @@ -35,7 +35,10 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- 'pypy-3.9'
- 'pypy-3.10'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -81,7 +84,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'
- run: pip install twine
- uses: actions/download-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- '3.10'
- '3.11'
- 'pypy-3.9'
- 'pypy-3.10'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@v5
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ def read_file(path):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Security :: Cryptography',
Expand Down

0 comments on commit 05d3335

Please sign in to comment.