Skip to content

Update requirements (prevent SSL errors) #325

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 4 commits into from
May 8, 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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ cd SeleniumBase
pip install -r requirements.txt
python setup.py develop
```
* ("``pip install -e .``" also works from the top-level SeleniumBase folder.)

You can also install SeleniumBase from [PyPI](https://pypi.python.org/pypi/seleniumbase): [<img src="https://img.shields.io/badge/pypi-seleniumbase-22AAEE.svg" alt="pypi" />](https://pypi.python.org/pypi/seleniumbase)
SeleniumBase can also be installed from [PyPI](https://pypi.python.org/pypi/seleniumbase): [<img src="https://img.shields.io/badge/pypi-seleniumbase-22AAEE.svg" alt="pypi" />](https://pypi.python.org/pypi/seleniumbase)
```
pip install seleniumbase
```
* (Add ``--upgrade`` to get the latest packages and ``--force-reinstall`` with ``--no-cache-dir`` to force a reinstall without using the existing cache.)
* (Add ``--upgrade`` to get the latest packages. Add ``--force-reinstall`` with ``--no-cache-dir`` to force a clean installation.)

You can also install a specific GitHub branch of SeleniumBase:
```
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pip
pip>=19.1.1
setuptools
six
nose
Expand All @@ -13,11 +13,12 @@ pytest-cov>=2.6.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
pytest-ordering>=0.6
parameterized>=0.7.0
beautifulsoup4>=4.6.0
pyopenssl>=19.0.0
colorama>=0.4.1
pyotp>=2.2.7
boto>=2.49.0
Expand Down
5 changes: 3 additions & 2 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.7',
version='1.23.8',
description='Reliable Browser Automation & Testing Framework',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -66,11 +66,12 @@
'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',
'pytest-ordering>=0.6',
'parameterized>=0.7.0',
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4
'pyopenssl>=19.0.0',
'colorama>=0.4.1',
'pyotp>=2.2.7',
'boto>=2.49.0',
Expand Down