Skip to content

Update pytest version and other requirements #326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ setuptools
six
nose
ipdb
chardet
unittest2
selenium==3.141.0
idna==2.8
chardet==3.0.4
urllib3==1.24.3
requests>=2.21.0
pytest>=4.4.1
pytest-cov>=2.6.1
selenium==3.141.0
pluggy>=0.11.0
pytest>=4.4.2
pytest-cov>=2.7.1
pytest-forked>=1.0.2
pytest-html>=1.20.0
pytest-metadata>=1.8.0
Expand Down
18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='seleniumbase',
version='1.23.8',
version='1.23.9',
description='Reliable Browser Automation & Testing Framework',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -51,26 +51,28 @@
"Programming Language :: Python :: 3.7",
],
install_requires=[
'pip',
'pip>=19.1.1',
'setuptools',
'six',
'nose',
'ipdb',
'chardet',
'unittest2',
'selenium==3.141.0',
'urllib3==1.24.3',
'idna==2.8', # Must stay in sync with "requests"
'chardet==3.0.4', # Must stay in sync with "requests"
'urllib3==1.24.3', # Must stay in sync with "requests"
'requests>=2.21.0',
'pytest>=4.4.1',
'pytest-cov>=2.6.1',
'selenium==3.141.0',
'pluggy>=0.11.0',
'pytest>=4.4.2',
'pytest-cov>=2.7.1',
'pytest-forked>=1.0.2',
'pytest-html>=1.20.0',
'pytest-metadata>=1.8.0',
'pytest-ordering>=0.6',
'pytest-rerunfailures>=7.0',
'pytest-xdist>=1.28.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"
'pyopenssl>=19.0.0',
'colorama>=0.4.1',
'pyotp>=2.2.7',
Expand Down