Skip to content

Commit 9bd62e6

Browse files
Removes selenium version dependency, current version is 2.53.2.
1 parent 46a7cb1 commit 9bd62e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis_python_dep.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ set -ev
33
PYTHON_VERSION=`python -c "import sys; print(sys.version[:3])"`
44
if [ "${PYTHON_VERSION}" = "2.6" ]; then
55
pip install robotframework
6-
pip install selenium==2.52.0
6+
pip install selenium
77
pip install decorator
88
pip install docutils
99
pip install future
1010
pip install mockito
1111
elif [ "${PYTHON_VERSION}" = "2.7" ]; then
1212
pip install robotframework
13-
pip install selenium==2.52.0
13+
pip install selenium
1414
pip install decorator
1515
pip install docutils
1616
pip install future
1717
pip install mockito
1818
elif [ "${PYTHON_VERSION}" = "3.4" ]; then
1919
pip install robotframework
20-
pip install selenium==2.52.0
20+
pip install selenium
2121
pip install decorator
2222
pip install docutils
2323
pip install future

0 commit comments

Comments
 (0)