Skip to content

Commit 0f28b8f

Browse files
authored
Unpin basic libraries
1 parent 24773a9 commit 0f28b8f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

noxfile.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
@nox.session
44
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',
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'])
1515
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',
1919
f'numpy=={numpy}',
2020
f'scipy=={scipy}',
2121
f'pandas=={pandas}'

0 commit comments

Comments
 (0)