File tree Expand file tree Collapse file tree 3 files changed +16
-13
lines changed
Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Maybe you need the `sudo` prefix depends on your OS environment.
2020
2121## Supported Python Versions
2222
23- Python 2.7 and Python 3.5 +.
23+ Python 2.7 and Python 3.6 +.
2424
2525## Generate API document
2626
Original file line number Diff line number Diff line change 1- arrow
2- iso8601
1+ arrow >= 0.17.0 ,< 1.0.0 ; python_version < '3.6'
2+ arrow >= 1.0.0 ,< 2.0.0 ; python_version >= '3.6'
3+ iso8601 >= 0.1.14
34six >= 1.11.0
45qiniu >= 7.1.4 ,< 7.2.4
5- requests >= 2.20.0 ,<= 2.22.0
6- urllib3 >= 1.24.3 ,<= 1.25.3
7- Werkzeug >= 0.16.0
6+ requests >= 2.25.1
7+ Werkzeug >= 0.16.0 ,<= 2.0.0
88secure-cookie >= 0.1.0 ,< 1.0.0
9- gevent >= 1.0.2 , < 2 .0.0
9+ gevent >= 21. 1.0, < 22 .0.0
Original file line number Diff line number Diff line change 66here = path .abspath (path .dirname (__file__ ))
77
88install_requires = [
9- 'arrow' ,
10- 'iso8601' ,
9+ 'iso8601>=0.1.14' ,
1110 'six>=1.11.0' ,
1211 'qiniu>=7.1.4,<7.2.4' ,
13- 'requests>=2.20.0,<=2.22.0' ,
14- 'urllib3>=1.24.3,<=1.25.3' ,
15- 'Werkzeug>=0.16.0' ,
12+ 'requests>=2.25.1' ,
13+ 'Werkzeug>=0.16.0,<=2.0.0' ,
1614 'secure-cookie>=0.1.0,<1.0.0' ,
17- 'gevent>=1.0.2,<2 .0.0'
15+ 'gevent>=21. 1.0,<22 .0.0'
1816]
1917
18+ if sys .version_info < (3 , 6 , 0 ):
19+ install_requires .append ('arrow>=0.17.0,<1.0.0' )
20+ else :
21+ install_requires .append ('arrow>=1.0.0,<2.0.0' )
22+
2023if sys .version_info < (3 , 5 , 0 ):
2124 install_requires .append ('typing' )
2225
You can’t perform that action at this time.
0 commit comments