Skip to content

Commit 25fe26f

Browse files
authored
Merge pull request #382 from seleniumbase/small-updates
Small updates
2 parents 205aa70 + 89e5763 commit 25fe26f

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ before_install:
1818
install:
1919
- "pip install --upgrade pip"
2020
- "pip install -r requirements.txt --upgrade"
21-
- "python setup.py develop"
21+
- "python setup.py install"
2222
- "sudo rm -f /etc/boto.cfg"
2323
before_script:
2424
- "flake8 --exclude=temp"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_3g.png" title="SeleniumBase" align="center" height="45">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
1+
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_3j.png" title="SeleniumBase" align="center" height="45">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
22

33
[<img src="https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/releases) [<img src="https://dev.azure.com/seleniumbase/seleniumbase/_apis/build/status/seleniumbase.SeleniumBase?branchName=master" alt=" " />](https://dev.azure.com/seleniumbase/seleniumbase/_build/latest?definitionId=1&branchName=master) [<img src="https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master" alt=" " />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt=" " />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="https://img.shields.io/badge/license-MIT-22BBCC.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE) [<img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/stargazers)<br />
44

@@ -14,7 +14,7 @@ SeleniumBase uses [pytest](https://github.com/pytest-dev/pytest) for running tes
1414

1515
## <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Get Started:
1616

17-
If you don't already have **``python``** installed, you can get it from: **[python.org/downloads](https://www.python.org/downloads/)** [<img src="https://img.shields.io/badge/python-2.7,_3.5,_3.6,_3.7+-22AADD.svg" alt=" " />](https://www.python.org/downloads/)
17+
If you don't already have **``python``** installed, you can get it from: **[python.org/downloads](https://www.python.org/downloads/)** [<img src="https://img.shields.io/pypi/pyversions/seleniumbase.svg" alt=" " />](https://www.python.org/downloads/)
1818
* Make sure **``python``** is on your System PATH.
1919

2020
Then upgrade **``pip``** for installing **``python``** packages:
@@ -34,14 +34,14 @@ 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 .
37+
pip install .
3838
```
3939

4040
To install dependancies separately from seleniumbase:
4141
(From the ``SeleniumBase`` folder:)
4242
```bash
4343
pip install -r requirements.txt
44-
python setup.py develop
44+
python setup.py install
4545
```
4646

4747
You can also install a specific GitHub branch of SeleniumBase:

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- script: python -m pip install --upgrade pip && pip install -r requirements.txt
3131
displayName: 'Install dependencies'
3232

33-
- script: python setup.py develop
33+
- script: python setup.py install
3434
displayName: 'Install SeleniumBase'
3535

3636
- script: |

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pytest-metadata>=1.8.0
1919
pytest-ordering>=0.6
2020
pytest-rerunfailures>=7.0
2121
pytest-timeout>=1.3.3
22-
pytest-xdist>=1.29.0
22+
pytest-xdist>=1.30.0
2323
parameterized>=0.7.0
2424
beautifulsoup4>=4.6.0
2525
pyopenssl>=19.0.0

setup.py

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

4646
setup(
4747
name='seleniumbase',
48-
version='1.32.5',
48+
version='1.32.6',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',
@@ -101,7 +101,7 @@
101101
'pytest-ordering>=0.6',
102102
'pytest-rerunfailures>=7.0',
103103
'pytest-timeout>=1.3.3',
104-
'pytest-xdist>=1.29.0',
104+
'pytest-xdist>=1.30.0',
105105
'parameterized>=0.7.0',
106106
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using "bs4"
107107
'pyopenssl>=19.0.0',

virtualenv_install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment
1818
echo:
1919
echo: Example:
2020
echo: mkvirtualenv seleniumbase
21-
echo: mkvirtualenv seleniumbase --python=python3
21+
echo: mkvirtualenv seleniumbase --python=[PATH_TO_PYTHON]
2222
echo:

virtualenv_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ then
2424
echo ""
2525
echo "Example:"
2626
echo " mkvirtualenv seleniumbase "
27-
echo " mkvirtualenv seleniumbase --python=python3"
27+
echo " mkvirtualenv seleniumbase --python=[PATH_TO_PYTHON]"
2828
echo ""
2929
else
3030
echo ""

0 commit comments

Comments
 (0)