Skip to content

Commit 718fa40

Browse files
committed
fix: pin for python 3.8 too
1 parent 99369d6 commit 718fa40

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ arrow>=1.0.0,<2.0.0; python_version >= '3.6'
33
iso8601>=0.1.14
44
six>=1.11.0
55
qiniu>=7.3.1
6-
requests<=2.31.0; python_version == '3.9'
7-
urllib3<=1.26.18; python_version == '3.9'
6+
requests<=2.31.0; python_version >= '3.8'
7+
urllib3<=1.26.18; python_version >= '3.8'
88
requests-toolbelt==1.0.0
99
Werkzeug>=0.16.0,<2.0.0
1010
secure-cookie>=0.1.0,<1.0.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
'iso8601>=0.1.14',
1212
'six>=1.11.0',
1313
'qiniu==7.3.1',
14-
"requests<=2.31.0; python_version == '3.9'",
15-
"urllib3<=1.26.18; python_version == '3.9'",
14+
"requests<=2.31.0; python_version >= '3.8'",
15+
"urllib3<=1.26.18; python_version >= '3.8'",
1616
'requests-toolbelt>=1.0.0',
1717
'Werkzeug>=0.16.0,<2.0.0',
1818
'secure-cookie>=0.1.0,<1.0.0',

0 commit comments

Comments
 (0)