From d5190305a32318babc62aa9aada542b19d95f2f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 May 2025 02:45:08 +0000 Subject: [PATCH] Bump asn1 from 2.8.0 to 3.0.1 Bumps [asn1](https://github.com/andrivet/python-asn1) from 2.8.0 to 3.0.1. - [Release notes](https://github.com/andrivet/python-asn1/releases) - [Changelog](https://github.com/andrivet/python-asn1/blob/master/CHANGELOG.rst) - [Commits](https://github.com/andrivet/python-asn1/compare/v2.8.0...v3.0.1) --- updated-dependencies: - dependency-name: asn1 dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 70edeeaa..e038af4c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,6 @@ PyJWT >= 2.6.0, < 3 requests >= 2.28.0, < 3 cryptography >= 40.0.0 pyOpenSSL >= 23.1.1 -asn1==2.8.0 +asn1==3.0.1 cattrs >= 23.1.2 httpx==0.28.1 diff --git a/setup.py b/setup.py index 555da8ca..1e4c8927 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ long_description_content_type="text/markdown", packages=find_packages(exclude=["tests"]), python_requires=">=3.7, <4", - install_requires=["attrs >= 21.3.0", 'PyJWT >= 2.6.0, < 3', 'requests >= 2.28.0, < 3', 'cryptography >= 40.0.0', 'pyOpenSSL >= 23.1.1', 'asn1==2.8.0', 'cattrs >= 23.1.2'], + install_requires=["attrs >= 21.3.0", 'PyJWT >= 2.6.0, < 3', 'requests >= 2.28.0, < 3', 'cryptography >= 40.0.0', 'pyOpenSSL >= 23.1.1', 'asn1==3.0.1', 'cattrs >= 23.1.2'], extras_require={ "async": ["httpx"], },