diff --git a/README.md b/README.md index 42078232b03..d5f6aa7c5ae 100755 --- a/README.md +++ b/README.md @@ -30,14 +30,19 @@ pip install seleniumbase * Add ``--upgrade`` to upgrade an existing installation. * Add ``--force-reinstall`` for a clean install. -You can also install SeleniumBase from a ``git clone``: +You can also install seleniumbase from a ``git clone``: ```bash git clone https://github.com/seleniumbase/SeleniumBase.git cd SeleniumBase +pip install -e . +``` + +To install dependancies separately from seleniumbase: +(From the ``SeleniumBase`` folder:) +```bash pip install -r requirements.txt python setup.py develop ``` -* "``pip install -e .``" also works from the top-level SeleniumBase folder. You can also install a specific GitHub branch of SeleniumBase: ```bash diff --git a/requirements.txt b/requirements.txt index 6f5e7ef2c58..a5465e21849 100755 --- a/requirements.txt +++ b/requirements.txt @@ -6,12 +6,12 @@ nose>=1.3.7 ipdb>=0.12.2 idna==2.8 chardet==3.0.4 -urllib3==1.25.3 +urllib3==1.25.6 requests>=2.22.0 selenium==3.141.0 pluggy>=0.12.0 pytest>=4.6.5;python_version<"3" -pytest>=5.1.3;python_version>="3" +pytest>=5.2.0;python_version>="3" pytest-cov>=2.7.1 pytest-forked>=1.0.2 pytest-html==1.22.0 diff --git a/seleniumbase/config/proxy_list.py b/seleniumbase/config/proxy_list.py index cd88ab2e146..806eaedc5db 100755 --- a/seleniumbase/config/proxy_list.py +++ b/seleniumbase/config/proxy_list.py @@ -20,7 +20,7 @@ PROXY_LIST = { "example1": "66.7.113.39:3128", # (Example) - set your own proxy here - "example2": "35.224.31.171:8080", # (Example) - set your own proxy here + "example2": "198.143.179.130:3128", # (Example) - set your own proxy here "example3": "104.236.248.219:3128", # (Example) - set your own proxy here "proxy1": None, "proxy2": None, diff --git a/setup.py b/setup.py index 7d21d4f5d06..f33ec12dd89 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ setup( name='seleniumbase', - version='1.32.4', + version='1.32.5', description='Fast, Easy, and Reliable Browser Automation & Testing.', long_description=long_description, long_description_content_type='text/markdown', @@ -88,12 +88,12 @@ 'ipdb', 'idna==2.8', # Must stay in sync with "requests" 'chardet==3.0.4', # Must stay in sync with "requests" - 'urllib3==1.25.3', # Must stay in sync with "requests" + 'urllib3==1.25.6', # Must stay in sync with "requests" 'requests>=2.22.0', 'selenium==3.141.0', 'pluggy>=0.12.0', 'pytest>=4.6.5;python_version<"3"', # For Python 2 compatibility - 'pytest>=5.1.3;python_version>="3"', + 'pytest>=5.2.0;python_version>="3"', 'pytest-cov>=2.7.1', 'pytest-forked>=1.0.2', 'pytest-html==1.22.0', # Keep at 1.22.0 unless tested on Windows