Skip to content

Commit 7a791f5

Browse files
Merge pull request #101 from alexanderjordanbaker/RemoveUpperBoundsOnLibraries
Remove upper limits for libraries that are unlikely to break on upgrade
2 parents 546ff41 + 191749c commit 7a791f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
attrs >= 21.3.0
22
PyJWT >= 2.6.0, < 3
33
requests >= 2.28.0, < 3
4-
cryptography >= 40.0.0, < 43
5-
pyOpenSSL >= 23.1.1, < 25
4+
cryptography >= 40.0.0
5+
pyOpenSSL >= 23.1.1
66
asn1==2.7.0
7-
cattrs==23.1.2
7+
cattrs >= 23.1.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
long_description_content_type="text/markdown",
1616
packages=find_packages(exclude=["tests"]),
1717
python_requires=">=3.7, <4",
18-
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'],
18+
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'],
1919
package_data={"appstoreserverlibrary": ["py.typed"]},
2020
license="MIT",
2121
classifiers=["License :: OSI Approved :: MIT License"],

0 commit comments

Comments
 (0)