diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 159ebc7..b65f28a 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -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 diff --git a/requirements.txt b/requirements.txt index 1e3bf9c..90bcefe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index 6e1bf32..a0a76be 100644 --- a/setup.py +++ b/setup.py @@ -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", ], )