File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ msedge-selenium-tools==3.141.3
36
36
more-itertools == 5.0.0 ;python_version < "3.5"
37
37
more-itertools == 8.10.0 ;python_version >= "3.5"
38
38
cssselect == 1.1.0
39
- filelock == 3.2.0
39
+ filelock == 3.2.1 ;python_version < "3.6"
40
+ filelock == 3.3.0 ;python_version >= "3.6"
40
41
fasteners == 0.16 ;python_version < "3.5"
41
42
fasteners == 0.16.3 ;python_version >= "3.5"
42
43
execnet == 1.9.0
@@ -108,7 +109,8 @@ pdfminer.six==20201018;python_version>="3.5"
108
109
# --- Testing Requirements --- #
109
110
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
110
111
111
- coverage == 5.5
112
+ coverage == 5.5 ;python_version < "3.6"
113
+ coverage == 6.0 ;python_version >= "3.6"
112
114
pytest-cov == 2.12.1
113
115
flake8 == 3.7.9 ;python_version < "3.5"
114
116
flake8 == 3.9.2 ;python_version >= "3.5"
Original file line number Diff line number Diff line change 152
152
'more-itertools==5.0.0;python_version<"3.5"' ,
153
153
'more-itertools==8.10.0;python_version>="3.5"' ,
154
154
"cssselect==1.1.0" ,
155
- "filelock==3.2.0" ,
155
+ 'filelock==3.2.1;python_version<"3.6"' ,
156
+ 'filelock==3.3.0;python_version>="3.6"' ,
156
157
'fasteners==0.16;python_version<"3.5"' ,
157
158
'fasteners==0.16.3;python_version>="3.5"' ,
158
159
"execnet==1.9.0" ,
224
225
extras_require = {
225
226
# pip install -e .[coverage]
226
227
"coverage" : [
227
- "coverage==5.5" ,
228
+ 'coverage==5.5;python_version<"3.6"' ,
229
+ 'coverage==6.0;python_version>="3.6"' ,
228
230
"pytest-cov==2.12.1" ,
229
231
],
230
232
# pip install -e .[flake]
You can’t perform that action at this time.
0 commit comments