Skip to content

Commit

Permalink
updating changes and py bump to 2.47.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Sep 15, 2015
1 parent e634a38 commit 0807842
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Selenium 2.47.3
* Bring back py 3 support

Selenium 2.47.2
* Fix running Edge driver locally on win10
* adding repr to WebDriver and WebElement

Selenium 2.47.1
* Fix the issue of deleting the profile when shutting down Firefox
* WebElement __eq__ compares against more types
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
from selenium import selenium


__version__ = "2.47.2"
__version__ = "2.47.3"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.47.2'
__version__ = '2.47.3'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "2.47.2",
'version': "2.47.3",
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(),
'url': 'https://github.com/SeleniumHQ/selenium/',
Expand All @@ -47,7 +47,8 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3'],
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'],
'package_dir': {
'selenium': 'py/selenium',
'selenium.common': 'py/selenium/common',
Expand Down

0 comments on commit 0807842

Please sign in to comment.