Skip to content

Commit a77a01d

Browse files
committed
Update pip, setuptools, pytest, and ipdb versions
1 parent d6617b1 commit a77a01d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
pip>=9.0.1
2-
setuptools>=38.5.2
1+
pip>=9.0.3
2+
setuptools>=39.0.1
33
ipython==5.5.0
44
selenium==3.8.1
55
nose==1.3.7
6-
pytest==3.4.2
6+
pytest==3.5.0
77
pytest-html==1.16.1
88
pytest-xdist==1.22.2
99
six==1.10.0
@@ -13,6 +13,6 @@ BeautifulSoup4==4.6.0
1313
unittest2==1.1.0
1414
chardet==3.0.4
1515
boto==2.48.0
16-
ipdb==0.10.2
16+
ipdb==0.11
1717
pyvirtualdisplay==0.2.1
1818
-e .

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
The setup package to install SeleniumBase dependencies and plugins
3-
(Uses the newer Selenium 3.8.1)
3+
(Uses selenium 3.x and is compatible with Python 2.7+ and Python 3.4+)
44
"""
55

66
from setuptools import setup, find_packages # noqa
@@ -17,12 +17,12 @@
1717
maintainer='Michael Mintz',
1818
license='The MIT License',
1919
install_requires=[
20-
'pip>=9.0.1',
21-
'setuptools>=38.5.2',
20+
'pip>=9.0.3',
21+
'setuptools>=39.0.1',
2222
'ipython==5.5.0',
2323
'selenium==3.8.1',
2424
'nose==1.3.7',
25-
'pytest==3.4.2',
25+
'pytest==3.5.0',
2626
'pytest-html==1.16.1',
2727
'pytest-xdist==1.22.2',
2828
'six==1.10.0',
@@ -32,7 +32,7 @@
3232
'unittest2==1.1.0',
3333
'chardet==3.0.4',
3434
'boto==2.48.0',
35-
'ipdb==0.10.2',
35+
'ipdb==0.11',
3636
'pyvirtualdisplay==0.2.1',
3737
],
3838
packages=['seleniumbase',

0 commit comments

Comments
 (0)