Skip to content

Commit 6543653

Browse files
authored
fix(dependencies): downgrade requests from 2.28.0 to 2.23.0 (#10)
1 parent b879a4c commit 6543653

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

jquantsapi/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
from dateutil import tz
88
from requests.adapters import HTTPAdapter
9-
from requests.packages.urllib3.util.retry import Retry # type: ignore
9+
from urllib3.util import Retry
1010

1111

1212
class Client:

poetry.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ build-backend = "poetry.core.masonry.api"
2727

2828
[tool.poetry.dependencies]
2929
python = ">=3.7.1,<4.0"
30-
requests = "^2.28.1"
30+
requests = "^2.23.0"
3131
types-requests = "^2.28.5"
3232
types-python-dateutil = "^2.8.19"
3333
pandas = [
@@ -38,6 +38,7 @@ numpy = [
3838
{ version = "~1.21.6", python = ">=3.7.1,<3.8" },
3939
{ version = "^1.23.1", python = ">=3.8" }
4040
]
41+
urllib3 = "^1.24.3"
4142

4243
[tool.poetry.dev-dependencies]
4344
black = "^22.6.0"

0 commit comments

Comments
 (0)