Skip to content

Commit 0807842

Browse files
committed
updating changes and py bump to 2.47.3
1 parent e634a38 commit 0807842

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

py/CHANGES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Selenium 2.47.3
2+
* Bring back py 3 support
3+
4+
Selenium 2.47.2
5+
* Fix running Edge driver locally on win10
6+
* adding repr to WebDriver and WebElement
7+
18
Selenium 2.47.1
29
* Fix the issue of deleting the profile when shutting down Firefox
310
* WebElement __eq__ compares against more types

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.47.2"
21+
__version__ = "2.47.3"

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.47.2'
35+
__version__ = '2.47.3'

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
setup_args = {
3232
'cmdclass': {'install': install},
3333
'name': 'selenium',
34-
'version': "2.47.2",
34+
'version': "2.47.3",
3535
'description': 'Python bindings for Selenium',
3636
'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(),
3737
'url': 'https://github.com/SeleniumHQ/selenium/',
@@ -47,7 +47,8 @@
4747
'Programming Language :: Python :: 2.6',
4848
'Programming Language :: Python :: 2.7',
4949
'Programming Language :: Python :: 3.2',
50-
'Programming Language :: Python :: 3.3'],
50+
'Programming Language :: Python :: 3.3',
51+
'Programming Language :: Python :: 3.4'],
5152
'package_dir': {
5253
'selenium': 'py/selenium',
5354
'selenium.common': 'py/selenium/common',

0 commit comments

Comments
 (0)