From d4380c144c87b3acb8d2e2a42336813f275ba0ab Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Fri, 26 Apr 2019 06:50:37 -0400 Subject: [PATCH 1/4] Install requirements without editable mode --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 180ea4f9cc4..575b4944a6b 100755 --- a/requirements.txt +++ b/requirements.txt @@ -23,4 +23,3 @@ pyotp>=2.2.7 boto>=2.49.0 flake8>=3.7.7 PyVirtualDisplay>=0.2.1 --e . From efe21ba6325f683ed941008445bcf36d965424c3 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Fri, 26 Apr 2019 06:50:54 -0400 Subject: [PATCH 2/4] Update the ReadMe --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b38d674587..96d0a1aed51 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ pytest my_first_test.py --demo_mode ``` git clone https://github.com/seleniumbase/SeleniumBase.git cd SeleniumBase -pip install -e . +pip install -r requirements.txt +python setup.py develop ``` You can also install SeleniumBase from [PyPI](https://pypi.python.org/pypi/seleniumbase): [pypi](https://pypi.python.org/pypi/seleniumbase) @@ -29,7 +30,7 @@ pip install seleniumbase You can also install a specific GitHub branch of SeleniumBase: ``` -pip install -e git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase +pip install git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase ``` ### Download a web driver: From 42529194deba40a1bffe4880a5f1e3fff1eccaa4 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Fri, 26 Apr 2019 06:52:43 -0400 Subject: [PATCH 3/4] Version 1.23.6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7277c67abae..945f2d06ba6 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='seleniumbase', - version='1.23.5', + version='1.23.6', description='Reliable Browser Automation & Testing Framework', long_description=long_description, long_description_content_type='text/markdown', From 0907cf019787e636fe03a3820503d963e2520784 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Fri, 26 Apr 2019 07:10:37 -0400 Subject: [PATCH 4/4] Update Azure Pipelines --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7a1bdc9284f..bd13e8b0909 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,6 +28,9 @@ jobs: - script: python -m pip install --upgrade pip && pip install -r requirements.txt displayName: 'Install dependencies' + - script: python setup.py develop + displayName: 'Install SeleniumBase' + - script: | sudo apt install google-chrome-stable sudo apt-get install firefox