Skip to content

Upgrade requirements #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 16, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions integrations/docker/docker_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
selenium==2.50.1
selenium==2.52.0
nose==1.3.7
pytest==2.8.5
flake8==2.5.1
pytest==2.8.7
flake8==2.5.4
requests==2.9.1
urllib3==1.14
BeautifulSoup==3.2.1
unittest2==1.1.0
chardet==2.3.0
simplejson==3.8.1
boto==2.38.0
simplejson==3.8.2
boto==2.39.0
ipdb==0.8.1
pyvirtualdisplay==0.1.5
2 changes: 1 addition & 1 deletion integrations/docker/docker_setup.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

setup(
name='seleniumbase',
version='1.1.27',
version='1.1.28',
author='Michael Mintz',
author_email='@mintzworld',
maintainer='Michael Mintz',
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
selenium==2.50.1
selenium==2.52.0
nose==1.3.7
pytest==2.8.5
flake8==2.5.1
pytest==2.8.7
flake8==2.5.4
requests==2.9.1
urllib3==1.14
BeautifulSoup==3.2.1
unittest2==1.1.0
chardet==2.3.0
simplejson==3.8.1
boto==2.38.0
simplejson==3.8.2
boto==2.39.0
ipdb==0.8.1
pyvirtualdisplay==0.1.5
-e .
4 changes: 2 additions & 2 deletions seleniumbase/core/selenium_launcher.py
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@
import time

SELENIUM_JAR = ("http://selenium-release.storage.googleapis.com"
"/2.50/selenium-server-standalone-2.50.1.jar")
JAR_FILE = "selenium-server-standalone-2.50.1.jar"
"/2.52/selenium-server-standalone-2.52.0.jar")
JAR_FILE = "selenium-server-standalone-2.52.0.jar"


def download_selenium():
12 changes: 6 additions & 6 deletions server_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
selenium==2.50.1
selenium==2.52.0
nose==1.3.7
pytest==2.8.5
flake8==2.5.1
pytest==2.8.7
flake8==2.5.4
requests==2.9.1
urllib3==1.14
BeautifulSoup==3.2.1
unittest2==1.1.0
chardet==2.3.0
simplejson==3.8.1
boto==2.38.0
MySQL-python==1.2.5
simplejson==3.8.2
boto==2.39.0
ipdb==0.8.1
pyvirtualdisplay==0.1.5
MySQL-python==1.2.5
-e .
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -6,25 +6,25 @@

setup(
name='seleniumbase',
version='1.1.27',
version='1.1.28',
url='https://github.com/mdmintz/SeleniumBase',
author='Michael Mintz',
author_email='@mintzworld',
maintainer='Michael Mintz',
description='The SeleniumBase Automation Framework',
license='The MIT License',
install_requires=[
'selenium==2.50.1',
'selenium==2.52.0',
'nose==1.3.7',
'pytest==2.8.5',
'flake8==2.5.1',
'pytest==2.8.7',
'flake8==2.5.4',
'requests==2.9.1',
'urllib3==1.14',
'BeautifulSoup==3.2.1',
'unittest2==1.1.0',
'chardet==2.3.0',
'simplejson==3.8.1',
'boto==2.38.0',
'simplejson==3.8.2',
'boto==2.39.0',
'ipdb==0.8.1',
'pyvirtualdisplay==0.1.5',
],