Skip to content

Commit 7674966

Browse files
authored
Merge pull request #748 from seleniumbase/update-python-dependencies
Update Python dependencies
2 parents 320c278 + 07cd63b commit 7674966

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Markdown==3.3.3
55
readme-renderer==28.0
66
pymdown-extensions==8.0.1
77
mkdocs==1.1.2
8-
mkdocs-material==6.1.6
8+
mkdocs-material==6.1.7
99
mkdocs-simple-hooks==0.1.2
1010
mkdocs-material-extensions==1.0.1
1111
mkdocs-minify-plugin==0.3.0

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
pip>=20.3.1
22
packaging>=20.7
33
setuptools>=44.1.1;python_version<"3.5"
4-
setuptools>=50.3.2;python_version>="3.5"
4+
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
5+
setuptools>=51.0.0;python_version>="3.6"
56
setuptools-scm>=4.1.2
67
wheel>=0.36.1
78
attrs>=20.3.0
8-
certifi>=2020.11.8
9+
certifi>=2020.12.5
910
six==1.15.0
1011
nose==1.3.7
1112
ipdb==0.13.4
@@ -45,7 +46,7 @@ cryptography==3.2.1;python_version>="3.6"
4546
pyopenssl==19.1.0;python_version<"3.6"
4647
pyopenssl==20.0.0;python_version>="3.6"
4748
pygments==2.5.2;python_version<"3.5"
48-
pygments==2.7.2;python_version>="3.5"
49+
pygments==2.7.3;python_version>="3.5"
4950
traitlets==4.3.3;python_version<"3.7"
5051
traitlets==5.0.5;python_version>="3.7"
5152
prompt-toolkit==1.0.18;python_version<"3.6"
@@ -77,6 +78,7 @@ pyflakes==2.1.1;python_version<"3.5"
7778
pyflakes==2.2.0;python_version>="3.5"
7879
tornado==5.1.1;python_version<"3.5"
7980
tornado==6.1;python_version>="3.5"
80-
allure-pytest==2.8.22
81+
allure-pytest==2.8.22;python_version<"3.5"
82+
allure-pytest==2.8.23;python_version>="3.5"
8183
pdfminer.six==20191110;python_version<"3.5"
8284
pdfminer.six==20201018;python_version>="3.5"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "1.50.18"
2+
__version__ = "1.50.19"

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,12 @@
105105
'pip>=20.3.1',
106106
'packaging>=20.7',
107107
'setuptools>=44.1.1;python_version<"3.5"',
108-
'setuptools>=50.3.2;python_version>="3.5"',
108+
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
109+
'setuptools>=51.0.0;python_version>="3.6"',
109110
'setuptools-scm',
110111
'wheel>=0.36.1',
111112
'attrs>=20.3.0',
112-
'certifi>=2020.11.8',
113+
'certifi>=2020.12.5',
113114
'six',
114115
'nose',
115116
'ipdb',
@@ -149,7 +150,7 @@
149150
'pyopenssl==19.1.0;python_version<"3.6"',
150151
'pyopenssl==20.0.0;python_version>="3.6"',
151152
'pygments==2.5.2;python_version<"3.5"',
152-
'pygments==2.7.2;python_version>="3.5"',
153+
'pygments==2.7.3;python_version>="3.5"',
153154
'traitlets==4.3.3;python_version<"3.7"',
154155
'traitlets==5.0.5;python_version>="3.7"',
155156
'ipython==5.10.0;python_version<"3.5"',
@@ -181,7 +182,8 @@
181182
'pyflakes==2.2.0;python_version>="3.5"',
182183
'tornado==5.1.1;python_version<"3.5"',
183184
'tornado==6.1;python_version>="3.5"',
184-
'allure-pytest==2.8.22',
185+
'allure-pytest==2.8.22;python_version<"3.5"',
186+
'allure-pytest==2.8.23;python_version>="3.5"',
185187
'pdfminer.six==20191110;python_version<"3.5"',
186188
'pdfminer.six==20201018;python_version>="3.5"',
187189
],

0 commit comments

Comments
 (0)