Skip to content

Commit eb396b8

Browse files
authored
Merge pull request #736 from seleniumbase/update-dependencies
Update Python dependencies
2 parents 4397bbb + 32c7aaf commit eb396b8

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
regex>=2020.11.13
2-
tqdm>=4.52.0
2+
tqdm>=4.53.0
33
livereload==2.6.3;python_version>="3.6"
44
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.5
8+
mkdocs-material==6.1.6
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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
5555
ipython==7.19.0;python_version>="3.7"
5656
colorama==0.4.4
5757
pathlib2==2.3.5;python_version<"3.5"
58-
importlib-metadata==2.0.0
59-
virtualenv>=20.1.0
58+
importlib-metadata==2.0.0;python_version<"3.6"
59+
importlib-metadata==3.0.0;python_version>="3.6"
60+
virtualenv>=20.2.1
6061
pymysql==0.10.1
6162
coverage==5.3
6263
brython==3.9.0
@@ -73,6 +74,6 @@ pyflakes==2.1.1;python_version<"3.5"
7374
pyflakes==2.2.0;python_version>="3.5"
7475
tornado==5.1.1;python_version<"3.5"
7576
tornado==6.1;python_version>="3.5"
76-
allure-pytest==2.8.19
77+
allure-pytest==2.8.21
7778
pdfminer.six==20191110;python_version<"3.5"
7879
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.7"
2+
__version__ = "1.50.8"

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5050
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
5151
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
52-
os.system("python -m pip install --upgrade 'tqdm>=4.52.0'")
52+
os.system("python -m pip install --upgrade 'tqdm>=4.53.0'")
5353
print("\n*** Publishing The Release to PyPI: ***\n")
5454
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
5555
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@@ -159,8 +159,9 @@
159159
'ipython==7.19.0;python_version>="3.7"',
160160
'colorama==0.4.4',
161161
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
162-
'importlib-metadata==2.0.0', # Sync with "virtualenv"
163-
'virtualenv>=20.1.0', # Sync with importlib-metadata and pathlib2
162+
'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
163+
'importlib-metadata==3.0.0;python_version>="3.6"', # Sync "virtualenv"
164+
'virtualenv>=20.2.1', # Sync with importlib-metadata and pathlib2
164165
'pymysql==0.10.1',
165166
'coverage==5.3',
166167
'brython==3.9.0',
@@ -177,7 +178,7 @@
177178
'pyflakes==2.2.0;python_version>="3.5"',
178179
'tornado==5.1.1;python_version<"3.5"',
179180
'tornado==6.1;python_version>="3.5"',
180-
'allure-pytest==2.8.19',
181+
'allure-pytest==2.8.21',
181182
'pdfminer.six==20191110;python_version<"3.5"',
182183
'pdfminer.six==20201018;python_version>="3.5"',
183184
],

0 commit comments

Comments
 (0)