Skip to content

Commit

Permalink
Merge pull request #101 from alexanderjordanbaker/RemoveUpperBoundsOn…
Browse files Browse the repository at this point in the history
…Libraries

Remove upper limits for libraries that are unlikely to break on upgrade
  • Loading branch information
alexanderjordanbaker authored Jul 9, 2024
2 parents 546ff41 + 191749c commit 7a791f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
cattrs >= 23.1.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 7a791f5

Please sign in to comment.