Skip to content

Commit b9b8e08

Browse files
committed
Merge pull request #17 from mdmintz/upgrade-requirements
Upgrade requirements
2 parents f04cce3 + d1ab92d commit b9b8e08

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
selenium==2.50.1
1+
selenium==2.52.0
22
nose==1.3.7
3-
pytest==2.8.5
4-
flake8==2.5.1
3+
pytest==2.8.7
4+
flake8==2.5.4
55
requests==2.9.1
66
urllib3==1.14
77
BeautifulSoup==3.2.1
88
unittest2==1.1.0
99
chardet==2.3.0
10-
simplejson==3.8.1
11-
boto==2.38.0
10+
simplejson==3.8.2
11+
boto==2.39.0
1212
ipdb==0.8.1
1313
pyvirtualdisplay==0.1.5

integrations/docker/docker_setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='seleniumbase',
11-
version='1.1.27',
11+
version='1.1.28',
1212
author='Michael Mintz',
1313
author_email='@mintzworld',
1414
maintainer='Michael Mintz',

requirements.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
selenium==2.50.1
1+
selenium==2.52.0
22
nose==1.3.7
3-
pytest==2.8.5
4-
flake8==2.5.1
3+
pytest==2.8.7
4+
flake8==2.5.4
55
requests==2.9.1
66
urllib3==1.14
77
BeautifulSoup==3.2.1
88
unittest2==1.1.0
99
chardet==2.3.0
10-
simplejson==3.8.1
11-
boto==2.38.0
10+
simplejson==3.8.2
11+
boto==2.39.0
1212
ipdb==0.8.1
1313
pyvirtualdisplay==0.1.5
1414
-e .

seleniumbase/core/selenium_launcher.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import time
88

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

1313

1414
def download_selenium():

server_requirements.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
selenium==2.50.1
1+
selenium==2.52.0
22
nose==1.3.7
3-
pytest==2.8.5
4-
flake8==2.5.1
3+
pytest==2.8.7
4+
flake8==2.5.4
55
requests==2.9.1
66
urllib3==1.14
77
BeautifulSoup==3.2.1
88
unittest2==1.1.0
99
chardet==2.3.0
10-
simplejson==3.8.1
11-
boto==2.38.0
12-
MySQL-python==1.2.5
10+
simplejson==3.8.2
11+
boto==2.39.0
1312
ipdb==0.8.1
1413
pyvirtualdisplay==0.1.5
14+
MySQL-python==1.2.5
1515
-e .

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66

77
setup(
88
name='seleniumbase',
9-
version='1.1.27',
9+
version='1.1.28',
1010
url='https://github.com/mdmintz/SeleniumBase',
1111
author='Michael Mintz',
1212
author_email='@mintzworld',
1313
maintainer='Michael Mintz',
1414
description='The SeleniumBase Automation Framework',
1515
license='The MIT License',
1616
install_requires=[
17-
'selenium==2.50.1',
17+
'selenium==2.52.0',
1818
'nose==1.3.7',
19-
'pytest==2.8.5',
20-
'flake8==2.5.1',
19+
'pytest==2.8.7',
20+
'flake8==2.5.4',
2121
'requests==2.9.1',
2222
'urllib3==1.14',
2323
'BeautifulSoup==3.2.1',
2424
'unittest2==1.1.0',
2525
'chardet==2.3.0',
26-
'simplejson==3.8.1',
27-
'boto==2.38.0',
26+
'simplejson==3.8.2',
27+
'boto==2.39.0',
2828
'ipdb==0.8.1',
2929
'pyvirtualdisplay==0.1.5',
3030
],

0 commit comments

Comments
 (0)