From b8361f410a2a370977beee2ad3d42edc4dda39d0 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Thu, 23 Oct 2014 21:08:48 +0100 Subject: [PATCH] Bumping Python to 2.44 --- py/README | 6 +++--- py/docs/source/index.rst | 6 +++--- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/py/README b/py/README index fa316fa13256e..d6a1f95d717eb 100644 --- a/py/README +++ b/py/README @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.43.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.44.tar.gz), unarchive it, and run:: python setup.py install @@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed. However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE). -Download the server separately, from: http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.44/selenium-server-standalone-2.44.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.43.0.jar + java -jar selenium-server-standalone-2.44.0.jar Then run your Python client scripts. diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index f74bc157ad40a..f5de601c45dac 100644 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.43.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.44.tar.gz), unarchive it, and run:: python setup.py install @@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed. However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE). -Download the server separately, from: http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.44/selenium-server-standalone-2.44.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.43.jar + java -jar selenium-server-standalone-2.44.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 121307a5d49e2..3f4715159f758 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -15,4 +15,4 @@ from selenium import selenium -__version__ = "2.43.0" +__version__ = "2.44.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 09a3c9ad8b31b..14b28de26ef8c 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -29,4 +29,4 @@ from .common.touch_actions import TouchActions from .common.proxy import Proxy -__version__ = '2.43.0' +__version__ = '2.44.0' diff --git a/setup.py b/setup.py index 612a7a5bc1c0f..df34b6bca2793 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup_args = { 'cmdclass':{'install': install}, 'name':'selenium', - 'version':"2.43.0", + 'version':"2.44.0", 'description':'Python bindings for Selenium', 'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(), 'url':'http://code.google.com/p/selenium/',