File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 22
33@nox .session
44def lint (session ):
5- session .install ('pytest== 5.3.5' , 'setuptools= =45.2' ,
6- 'wheel== 0.34.2' , 'flake8= =3.7.9' ,
5+ session .install ('pytest>= 5.3.5' , 'setuptools> =45.2' ,
6+ 'wheel>= 0.34.2' , 'flake8> =3.7.9' ,
77 'numpy==1.18.1' , 'pandas==1.0.5' )
88 session .install ('.' )
99 session .run ('flake8' , 'sklearn_pandas/' , 'tests' )
@@ -13,9 +13,9 @@ def lint(session):
1313@nox .parametrize ('scipy' , ['1.4.1' , '1.5.4' , '1.6.0' ])
1414@nox .parametrize ('pandas' , ['1.0.5' , '1.1.4' , '1.2.2' ])
1515def tests (session , numpy , scipy , pandas ):
16- session .install ('pytest= =5.3.5' ,
17- 'setuptools= =45.2' ,
18- 'wheel= =0.34.2' ,
16+ session .install ('pytest> =5.3.5' ,
17+ 'setuptools> =45.2' ,
18+ 'wheel> =0.34.2' ,
1919 f'numpy=={ numpy } ' ,
2020 f'scipy=={ scipy } ' ,
2121 f'pandas=={ pandas } '
You can’t perform that action at this time.
0 commit comments