Skip to content

Commit

Permalink
Merge pull request #233 from ds-cbo/patch-1
Browse files Browse the repository at this point in the history
Drop python 3.8, add 3.12, 3.13 support
  • Loading branch information
MasterKale authored Nov 21, 2024
2 parents 3504cd7 + 1e0a50a commit 067db09
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v3
Expand Down
34 changes: 17 additions & 17 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
asn1crypto==1.4.0
black==24.3.0
cbor2==5.5.0
cffi==1.15.0
click==8.0.3
cryptography==42.0.5
mccabe==0.6.1
mypy==1.9.0
asn1crypto==1.5.1
black==24.8.0
cbor2==5.6.5
cffi==1.17.1
click==8.1.7
cryptography==43.0.3
mccabe==0.7.0
mypy==1.11.2
mypy-extensions==1.0.0
pathspec==0.9.0
platformdirs==2.4.0
pycodestyle==2.8.0
pycparser==2.20
pyflakes==2.4.0
pyOpenSSL==24.1.0
regex==2021.10.8
pathspec==0.12.1
platformdirs==4.3.6
pycodestyle==2.12.1
pycparser==2.22
pyflakes==3.2.0
pyOpenSSL==24.2.1
regex==2024.11.6
six==1.16.0
toml==0.10.2
tomli==1.2.1
typing_extensions==4.9.0
tomli==2.0.1
typing_extensions==4.12.2
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def find_version(*file_paths):
"Programming Language :: Python :: 3",
],
install_requires=[
"asn1crypto>=1.4.0",
"cbor2>=5.4.6",
"cryptography>=41.0.7",
"pyOpenSSL>=23.3.0",
"asn1crypto>=1.5.1",
"cbor2>=5.6.5",
"cryptography>=43.0.3",
"pyOpenSSL>=24.2.1",
],
)

0 comments on commit 067db09

Please sign in to comment.