Skip to content

Commit

Permalink
using requests version that doesn't use breaking urllib3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkahan committed May 4, 2023
1 parent 192f471 commit 60b6ff3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
from setuptools import setup, find_packages


with io.open(
os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
) as f:
with io.open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
long_description = f.read()

setup(
Expand All @@ -23,7 +21,7 @@
package_dir={"": "src"},
platforms=["any"],
install_requires=[
"requests>=2.4.2",
"requests>=2.4.2,<2.30",
"PyJWT[crypto]>=1.6.4",
"pytz>=2018.5",
"Deprecated",
Expand Down

0 comments on commit 60b6ff3

Please sign in to comment.