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 2
2
3
3
@nox .session
4
4
def 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' ,
7
7
'numpy==1.18.1' , 'pandas==1.0.5' )
8
8
session .install ('.' )
9
9
session .run ('flake8' , 'sklearn_pandas/' , 'tests' )
@@ -13,9 +13,9 @@ def lint(session):
13
13
@nox .parametrize ('scipy' , ['1.4.1' , '1.5.4' , '1.6.0' ])
14
14
@nox .parametrize ('pandas' , ['1.0.5' , '1.1.4' , '1.2.2' ])
15
15
def 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' ,
19
19
f'numpy=={ numpy } ' ,
20
20
f'scipy=={ scipy } ' ,
21
21
f'pandas=={ pandas } '
You can’t perform that action at this time.
0 commit comments