Skip to content

Commit b6b5006

Browse files
Bump python version to 2.53.1
1 parent a748927 commit b6b5006

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 2.53.1
2+
* Fix basestring reference to work with python 3. Fixes #1820
3+
* Correct Length conditional when filtering in PhantomJS. Fixes #1817
4+
15
Selenium 2.53.0
26
* Adding Options object for use with Python FirefoxDriver
37
* Fixed improper usage of super in exceptions module

py/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.0.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.1.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.0.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.1.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

43-
Note: both of the methods described above install `selenium` as a system-wide package That will require administrative/root access to ther machine. You may consider using a `virtualenv <http://www.virtualenv.org/>`_ to create isolated Python environments instead.
43+
Note: both of the methods described above install `selenium` as a system-wide package That will require administrative/root access to there machine. You may consider using a `virtualenv <http://www.virtualenv.org/>`_ to create isolated Python environments instead.
4444

4545
Example 0:
4646
==========

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from selenium import selenium
1919

2020

21-
__version__ = "2.53.0"
21+
__version__ = "2.53.1"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions
3333
from .common.proxy import Proxy
3434

35-
__version__ = '2.53.0'
35+
__version__ = '2.53.1'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
setup_args = {
3333
'cmdclass': {'install': install},
3434
'name': 'selenium',
35-
'version': "2.53.0",
35+
'version': "2.53.1",
3636
'description': 'Python bindings for Selenium',
3737
'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
3838
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)