Skip to content

Commit 546520e

Browse files
authored
Merge pull request #325 from seleniumbase/update-requirements
Update requirements (prevent SSL errors)
2 parents f513124 + 8b8a5d5 commit 546520e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ cd SeleniumBase
2121
pip install -r requirements.txt
2222
python setup.py develop
2323
```
24+
* ("``pip install -e .``" also works from the top-level SeleniumBase folder.)
2425

25-
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)
26+
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)
2627
```
2728
pip install seleniumbase
2829
```
29-
* (Add ``--upgrade`` to get the latest packages and ``--force-reinstall`` with ``--no-cache-dir`` to force a reinstall without using the existing cache.)
30+
* (Add ``--upgrade`` to get the latest packages. Add ``--force-reinstall`` with ``--no-cache-dir`` to force a clean installation.)
3031

3132
You can also install a specific GitHub branch of SeleniumBase:
3233
```

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pip
1+
pip>=19.1.1
22
setuptools
33
six
44
nose
@@ -13,11 +13,12 @@ pytest-cov>=2.6.1
1313
pytest-forked>=1.0.2
1414
pytest-html>=1.20.0
1515
pytest-metadata>=1.8.0
16+
pytest-ordering>=0.6
1617
pytest-rerunfailures>=7.0
1718
pytest-xdist>=1.28.0
18-
pytest-ordering>=0.6
1919
parameterized>=0.7.0
2020
beautifulsoup4>=4.6.0
21+
pyopenssl>=19.0.0
2122
colorama>=0.4.1
2223
pyotp>=2.2.7
2324
boto>=2.49.0

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='seleniumbase',
20-
version='1.23.7',
20+
version='1.23.8',
2121
description='Reliable Browser Automation & Testing Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',
@@ -66,11 +66,12 @@
6666
'pytest-forked>=1.0.2',
6767
'pytest-html>=1.20.0',
6868
'pytest-metadata>=1.8.0',
69+
'pytest-ordering>=0.6',
6970
'pytest-rerunfailures>=7.0',
7071
'pytest-xdist>=1.28.0',
71-
'pytest-ordering>=0.6',
7272
'parameterized>=0.7.0',
7373
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4
74+
'pyopenssl>=19.0.0',
7475
'colorama>=0.4.1',
7576
'pyotp>=2.2.7',
7677
'boto>=2.49.0',

0 commit comments

Comments
 (0)