Skip to content

Commit 5c45e27

Browse files
authored
Merge pull request #322 from seleniumbase/editable-install-fix
Editable mode install update
2 parents 450db0f + 0907cf0 commit 5c45e27

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ pytest my_first_test.py --demo_mode
1818
```
1919
git clone https://github.com/seleniumbase/SeleniumBase.git
2020
cd SeleniumBase
21-
pip install -e .
21+
pip install -r requirements.txt
22+
python setup.py develop
2223
```
2324

2425
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)
@@ -29,7 +30,7 @@ pip install seleniumbase
2930

3031
You can also install a specific GitHub branch of SeleniumBase:
3132
```
32-
pip install -e git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase
33+
pip install git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase
3334
```
3435

3536
### <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Download a web driver:

azure-pipelines.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
- script: python -m pip install --upgrade pip && pip install -r requirements.txt
2929
displayName: 'Install dependencies'
3030

31+
- script: python setup.py develop
32+
displayName: 'Install SeleniumBase'
33+
3134
- script: |
3235
sudo apt install google-chrome-stable
3336
sudo apt-get install firefox

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ pyotp>=2.2.7
2323
boto>=2.49.0
2424
flake8>=3.7.7
2525
PyVirtualDisplay>=0.2.1
26-
-e .

setup.py

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

1818
setup(
1919
name='seleniumbase',
20-
version='1.23.5',
20+
version='1.23.6',
2121
description='Reliable Browser Automation & Testing Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)