diff --git a/changelog b/changelog index 744d76e..c4b3561 100644 --- a/changelog +++ b/changelog @@ -2,7 +2,7 @@ ## Chore -- Pin requests/urllib version on Python 3.9 +- Pin requests/urllib version on Python 3.7+ ## [3.0.1] - 2024-06-25 diff --git a/requirements.txt b/requirements.txt index 9a82775..4f12565 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,8 +3,8 @@ arrow>=1.0.0,<2.0.0; python_version >= '3.6' iso8601>=0.1.14 six>=1.11.0 qiniu>=7.3.1 -requests<=2.31.0; python_version >= '3.8' -urllib3<=1.26.18; python_version >= '3.8' +requests<=2.31.0; python_version >= '3.7' +urllib3<=1.26.18; python_version >= '3.7' requests-toolbelt==1.0.0 Werkzeug>=0.16.0,<2.0.0 secure-cookie>=0.1.0,<1.0.0 diff --git a/setup.py b/setup.py index d0b81f3..33a7a6c 100644 --- a/setup.py +++ b/setup.py @@ -11,8 +11,8 @@ 'iso8601>=0.1.14', 'six>=1.11.0', 'qiniu==7.3.1', - "requests<=2.31.0; python_version >= '3.8'", - "urllib3<=1.26.18; python_version >= '3.8'", + "requests<=2.31.0; python_version >= '3.7'", + "urllib3<=1.26.18; python_version >= '3.7'", 'requests-toolbelt>=1.0.0', 'Werkzeug>=0.16.0,<2.0.0', 'secure-cookie>=0.1.0,<1.0.0',