Skip to content

Commit cc0ae55

Browse files
authored
Merge pull request #381 from seleniumbase/update-requirements
Update requirements
2 parents c0695f2 + 954a872 commit cc0ae55

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,19 @@ pip install seleniumbase
3030
* Add ``--upgrade`` to upgrade an existing installation.
3131
* Add ``--force-reinstall`` for a clean install.
3232

33-
You can also install SeleniumBase from a ``git clone``:
33+
You can also install seleniumbase from a ``git clone``:
3434
```bash
3535
git clone https://github.com/seleniumbase/SeleniumBase.git
3636
cd SeleniumBase
37+
pip install -e .
38+
```
39+
40+
To install dependancies separately from seleniumbase:
41+
(From the ``SeleniumBase`` folder:)
42+
```bash
3743
pip install -r requirements.txt
3844
python setup.py develop
3945
```
40-
* "``pip install -e .``" also works from the top-level SeleniumBase folder.
4146

4247
You can also install a specific GitHub branch of SeleniumBase:
4348
```bash

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ nose>=1.3.7
66
ipdb>=0.12.2
77
idna==2.8
88
chardet==3.0.4
9-
urllib3==1.25.3
9+
urllib3==1.25.6
1010
requests>=2.22.0
1111
selenium==3.141.0
1212
pluggy>=0.12.0
1313
pytest>=4.6.5;python_version<"3"
14-
pytest>=5.1.3;python_version>="3"
14+
pytest>=5.2.0;python_version>="3"
1515
pytest-cov>=2.7.1
1616
pytest-forked>=1.0.2
1717
pytest-html==1.22.0

seleniumbase/config/proxy_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
PROXY_LIST = {
2222
"example1": "66.7.113.39:3128", # (Example) - set your own proxy here
23-
"example2": "35.224.31.171:8080", # (Example) - set your own proxy here
23+
"example2": "198.143.179.130:3128", # (Example) - set your own proxy here
2424
"example3": "104.236.248.219:3128", # (Example) - set your own proxy here
2525
"proxy1": None,
2626
"proxy2": None,

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
setup(
4747
name='seleniumbase',
48-
version='1.32.4',
48+
version='1.32.5',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',
@@ -88,12 +88,12 @@
8888
'ipdb',
8989
'idna==2.8', # Must stay in sync with "requests"
9090
'chardet==3.0.4', # Must stay in sync with "requests"
91-
'urllib3==1.25.3', # Must stay in sync with "requests"
91+
'urllib3==1.25.6', # Must stay in sync with "requests"
9292
'requests>=2.22.0',
9393
'selenium==3.141.0',
9494
'pluggy>=0.12.0',
9595
'pytest>=4.6.5;python_version<"3"', # For Python 2 compatibility
96-
'pytest>=5.1.3;python_version>="3"',
96+
'pytest>=5.2.0;python_version>="3"',
9797
'pytest-cov>=2.7.1',
9898
'pytest-forked>=1.0.2',
9999
'pytest-html==1.22.0', # Keep at 1.22.0 unless tested on Windows

0 commit comments

Comments
 (0)