From 191749c4ea2be222dc0e1db5ad37aaf479eb229e Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Tue, 9 Jul 2024 09:22:03 -0600 Subject: [PATCH] Remove upper limits for libraries that are unlikely to break on upgrade --- requirements.txt | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index fd35c8a..b044e44 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ attrs >= 21.3.0 PyJWT >= 2.6.0, < 3 requests >= 2.28.0, < 3 -cryptography >= 40.0.0, < 43 -pyOpenSSL >= 23.1.1, < 25 +cryptography >= 40.0.0 +pyOpenSSL >= 23.1.1 asn1==2.7.0 -cattrs==23.1.2 \ No newline at end of file +cattrs >= 23.1.2 \ No newline at end of file diff --git a/setup.py b/setup.py index 8fd528a..4215714 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, < 43', 'pyOpenSSL >= 23.1.1, < 25', 'asn1==2.7.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==2.7.0', 'cattrs >= 23.1.2'], package_data={"appstoreserverlibrary": ["py.typed"]}, license="MIT", classifiers=["License :: OSI Approved :: MIT License"],