Make some requirements more flexible

This commit is contained in:
Michael Mintz 2019-04-22 20:22:11 -04:00
parent b7ed2f6b87
commit 4858a04b42
2 changed files with 6 additions and 6 deletions

View File

@ -17,9 +17,9 @@ pytest-xdist>=1.28.0
pytest-ordering>=0.6 pytest-ordering>=0.6
parameterized>=0.7.0 parameterized>=0.7.0
beautifulsoup4>=4.6.0 beautifulsoup4>=4.6.0
colorama==0.4.1 colorama>=0.4.1
pyotp>=2.2.7 pyotp>=2.2.7
boto>=2.49.0 boto>=2.49.0
flake8==3.7.7 flake8>=3.7.7
PyVirtualDisplay==0.2.1 PyVirtualDisplay>=0.2.1
-e . -e .

View File

@ -70,11 +70,11 @@ setup(
'pytest-ordering>=0.6', 'pytest-ordering>=0.6',
'parameterized>=0.7.0', 'parameterized>=0.7.0',
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4 'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4
'colorama==0.4.1', 'colorama>=0.4.1',
'pyotp>=2.2.7', 'pyotp>=2.2.7',
'boto>=2.49.0', 'boto>=2.49.0',
'flake8>=3.6.0,<3.8.0', 'flake8>=3.7.7',
'PyVirtualDisplay==0.2.1', 'PyVirtualDisplay>=0.2.1',
], ],
packages=[ packages=[
'seleniumbase', 'seleniumbase',