Skip to content

Commit b10cc01

Browse files
Bump python version to 2.49.2
1 parent 6b4a1d3 commit b10cc01

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

py/README

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.49.1.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.49.2.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

py/docs/source/index.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.49.1.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.49.2.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

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.49.1"
21+
__version__ = "2.49.2"

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.49.1'
35+
__version__ = '2.49.2'

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.49.1",
35+
'version': "2.49.2",
3636
'description': 'Python bindings for Selenium',
3737
'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(),
3838
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)