File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- pip >= 9.0.1
2
- setuptools >= 38.5.2
1
+ pip >= 9.0.3
2
+ setuptools >= 39.0.1
3
3
ipython == 5.5.0
4
4
selenium == 3.8.1
5
5
nose == 1.3.7
6
- pytest == 3.4.2
6
+ pytest == 3.5.0
7
7
pytest-html == 1.16.1
8
8
pytest-xdist == 1.22.2
9
9
six == 1.10.0
@@ -13,6 +13,6 @@ BeautifulSoup4==4.6.0
13
13
unittest2 == 1.1.0
14
14
chardet == 3.0.4
15
15
boto == 2.48.0
16
- ipdb == 0.10.2
16
+ ipdb == 0.11
17
17
pyvirtualdisplay == 0.2.1
18
18
-e .
Original file line number Diff line number Diff line change 1
1
"""
2
2
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+ )
4
4
"""
5
5
6
6
from setuptools import setup , find_packages # noqa
17
17
maintainer = 'Michael Mintz' ,
18
18
license = 'The MIT License' ,
19
19
install_requires = [
20
- 'pip>=9.0.1 ' ,
21
- 'setuptools>=38.5.2 ' ,
20
+ 'pip>=9.0.3 ' ,
21
+ 'setuptools>=39.0.1 ' ,
22
22
'ipython==5.5.0' ,
23
23
'selenium==3.8.1' ,
24
24
'nose==1.3.7' ,
25
- 'pytest==3.4.2 ' ,
25
+ 'pytest==3.5.0 ' ,
26
26
'pytest-html==1.16.1' ,
27
27
'pytest-xdist==1.22.2' ,
28
28
'six==1.10.0' ,
32
32
'unittest2==1.1.0' ,
33
33
'chardet==3.0.4' ,
34
34
'boto==2.48.0' ,
35
- 'ipdb==0.10.2 ' ,
35
+ 'ipdb==0.11 ' ,
36
36
'pyvirtualdisplay==0.2.1' ,
37
37
],
38
38
packages = ['seleniumbase' ,
You can’t perform that action at this time.
0 commit comments