Skip to content

Commit 752adc5

Browse files
authored
Merge pull request #509 from seleniumbase/update-dependencies
Update Python dependencies
2 parents 1506f8e + 9d8992c commit 752adc5

File tree

2 files changed

+33
-31
lines changed

2 files changed

+33
-31
lines changed

requirements.txt

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
pip>=20.0.2
22
setuptools>=44.0.0;python_version<"3"
3-
setuptools>=45.2.0;python_version>="3"
3+
setuptools>=46.0.0;python_version>="3"
44
setuptools-scm>=3.5.0
55
wheel>=0.34.2
66
six==1.14.0
77
nose==1.3.7
8-
ipdb==0.12.3
8+
ipdb==0.13.2
99
idna==2.9
1010
chardet==3.0.4
1111
urllib3==1.25.8
1212
requests==2.23.0
1313
selenium==3.141.0
1414
pluggy>=0.13.1
1515
attrs>=19.3.0
16-
pytest>=4.6.9;python_version<"3"
17-
pytest>=5.3.5;python_version>="3"
18-
pytest-cov>=2.8.1
19-
pytest-forked>=1.1.3
16+
pytest==4.6.9;python_version<"3"
17+
pytest==5.3.5;python_version>="3"
18+
pytest-cov==2.8.1
19+
pytest-forked==1.1.3
2020
pytest-html==1.22.1;python_version<"3.6"
2121
pytest-html==2.0.1;python_version>="3.6"
22-
pytest-metadata>=1.8.0
23-
pytest-ordering>=0.6
24-
pytest-rerunfailures>=8.0
25-
pytest-xdist>=1.31.0
26-
parameterized>=0.7.1
22+
pytest-metadata==1.8.0
23+
pytest-ordering==0.6
24+
pytest-rerunfailures==8.0
25+
pytest-xdist==1.31.0
26+
parameterized==0.7.1
2727
soupsieve==1.9.5;python_version<"3.5"
2828
soupsieve==2.0;python_version>="3.5"
2929
beautifulsoup4==4.8.2
@@ -32,15 +32,16 @@ portalocker==1.5.2
3232
cryptography==2.8
3333
asn1crypto==1.3.0
3434
pyopenssl==19.1.0
35-
packaging>=20.1
36-
pygments==2.5.2
35+
packaging>=20.3
36+
pygments==2.5.2;python_version<"3.5"
37+
pygments==2.6.1;python_version>="3.5"
3738
colorama==0.4.3
38-
coverage>=5.0.3
39+
coverage==5.0.3
3940
pymysql==0.9.3
4041
pyotp==2.3.0
4142
boto==2.49.0
42-
cffi>=1.14.0
43-
tqdm>=4.43.0
43+
cffi==1.14.0
44+
tqdm==4.43.0
4445
flake8==3.7.9
4546
certifi>=2019.11.28
4647
pdfminer.six==20191110;python_version<"3.5"

setup.py

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
setup(
4747
name='seleniumbase',
48-
version='1.35.8',
48+
version='1.35.9',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',
@@ -95,17 +95,17 @@
9595
'selenium==3.141.0',
9696
'pluggy>=0.13.1',
9797
'attrs>=19.3.0',
98-
'pytest>=4.6.9;python_version<"3"', # For Python 2 compatibility
99-
'pytest>=5.3.5;python_version>="3"',
100-
'pytest-cov>=2.8.1',
101-
'pytest-forked>=1.1.3',
98+
'pytest==4.6.9;python_version<"3"', # For Python 2 compatibility
99+
'pytest==5.3.5;python_version>="3"',
100+
'pytest-cov==2.8.1',
101+
'pytest-forked==1.1.3',
102102
'pytest-html==1.22.1;python_version<"3.6"',
103103
'pytest-html==2.0.1;python_version>="3.6"',
104-
'pytest-metadata>=1.8.0',
105-
'pytest-ordering>=0.6',
106-
'pytest-rerunfailures>=8.0',
107-
'pytest-xdist>=1.31.0',
108-
'parameterized>=0.7.1',
104+
'pytest-metadata==1.8.0',
105+
'pytest-ordering==0.6',
106+
'pytest-rerunfailures==8.0',
107+
'pytest-xdist==1.31.0',
108+
'parameterized==0.7.1',
109109
'soupsieve==1.9.5;python_version<"3.5"',
110110
'soupsieve==2.0;python_version>="3.5"',
111111
'beautifulsoup4==4.8.2',
@@ -114,15 +114,16 @@
114114
'cryptography==2.8',
115115
'asn1crypto==1.3.0',
116116
'pyopenssl==19.1.0',
117-
'packaging>=20.1',
118-
'pygments>=2.5.2',
117+
'packaging>=20.3',
118+
'pygments==2.5.2;python_version<"3.5"',
119+
'pygments==2.6.1;python_version>="3.5"',
119120
'colorama==0.4.3',
120-
'coverage>=5.0.3',
121+
'coverage==5.0.3',
121122
'pymysql==0.9.3',
122123
'pyotp==2.3.0',
123124
'boto==2.49.0',
124-
'cffi>=1.14.0',
125-
'tqdm>=4.43.0',
125+
'cffi==1.14.0',
126+
'tqdm==4.43.0',
126127
'flake8==3.7.9',
127128
'certifi>=2019.11.28',
128129
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)