Skip to content

Commit 7eb232f

Browse files
authored
Merge pull request #724 from seleniumbase/update-dependencies
Update Python dependencies
2 parents 1e8438f + d11a3bb commit 7eb232f

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

docs/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
regex>=2020.10.15
2-
tqdm>=4.50.2
1+
regex>=2020.10.23
2+
tqdm>=4.51.0
33
livereload==2.6.3;python_version>="3.6"
4-
Markdown==3.3.2
4+
Markdown==3.3.3
55
readme-renderer==28.0
66
pymdown-extensions==8.0.1
77
mkdocs==1.1.2

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ soupsieve==1.9.6;python_version<"3.5"
4040
soupsieve==2.0.1;python_version>="3.5"
4141
beautifulsoup4==4.9.3
4242
cryptography==3.0;python_version<"3.6"
43-
cryptography==3.1.1;python_version>="3.6"
43+
cryptography==3.2;python_version>="3.6"
4444
pyopenssl==19.1.0
4545
pygments==2.5.2;python_version<"3.5"
46-
pygments==2.7.1;python_version>="3.5"
46+
pygments==2.7.2;python_version>="3.5"
4747
traitlets==4.3.3;python_version<"3.7"
4848
traitlets==5.0.5;python_version>="3.7"
4949
prompt-toolkit==1.0.18;python_version<"3.6"
@@ -55,16 +55,16 @@ ipython==7.18.1;python_version>="3.7"
5555
colorama==0.4.4
5656
pathlib2==2.3.5;python_version<"3.5"
5757
importlib-metadata==2.0.0
58-
virtualenv>=20.0.35
58+
virtualenv>=20.1.0
5959
pymysql==0.10.1
6060
coverage==5.3
6161
brython==3.9.0
6262
pyotp==2.4.1
6363
boto==2.49.0
6464
cffi==1.14.3
6565
zipp==1.2.0;python_version<"3.6"
66-
zipp==3.3.1;python_version>="3.6"
67-
rich==9.0.1;python_version>="3.6" and python_version<"4.0"
66+
zipp==3.4.0;python_version>="3.6"
67+
rich==9.1.0;python_version>="3.6" and python_version<"4.0"
6868
flake8==3.7.9;python_version<"3.5"
6969
flake8==3.8.4;python_version>="3.5"
7070
pyflakes==2.1.1;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.0"
2+
__version__ = "1.50.1"

seleniumbase/core/browser_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ def get_local_driver(
707707
"IE Browser is for Windows-based operating systems only!")
708708
from selenium.webdriver.ie.options import Options
709709
ie_options = Options()
710-
ie_options.ignore_protected_mode_settings = False
710+
ie_options.ignore_protected_mode_settings = True
711711
ie_options.ignore_zoom_level = True
712712
ie_options.require_window_focus = False
713713
ie_options.native_events = True

setup.py

Lines changed: 6 additions & 6 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.50.2'")
52+
os.system("python -m pip install --upgrade 'tqdm>=4.51.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")
@@ -144,10 +144,10 @@
144144
'soupsieve==2.0.1;python_version>="3.5"',
145145
'beautifulsoup4==4.9.3',
146146
'cryptography==3.0;python_version<"3.6"',
147-
'cryptography==3.1.1;python_version>="3.6"',
147+
'cryptography==3.2;python_version>="3.6"',
148148
'pyopenssl==19.1.0',
149149
'pygments==2.5.2;python_version<"3.5"',
150-
'pygments==2.7.1;python_version>="3.5"',
150+
'pygments==2.7.2;python_version>="3.5"',
151151
'traitlets==4.3.3;python_version<"3.7"',
152152
'traitlets==5.0.5;python_version>="3.7"',
153153
'ipython==5.10.0;python_version<"3.5"',
@@ -159,16 +159,16 @@
159159
'colorama==0.4.4',
160160
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
161161
'importlib-metadata==2.0.0', # Sync with "virtualenv"
162-
'virtualenv>=20.0.35', # Sync with importlib-metadata and pathlib2
162+
'virtualenv>=20.1.0', # Sync with importlib-metadata and pathlib2
163163
'pymysql==0.10.1',
164164
'coverage==5.3',
165165
'brython==3.9.0',
166166
'pyotp==2.4.1',
167167
'boto==2.49.0',
168168
'cffi==1.14.3',
169169
'zipp==1.2.0;python_version<"3.6"',
170-
'zipp==3.3.1;python_version>="3.6"',
171-
'rich==9.0.1;python_version>="3.6" and python_version<"4.0"',
170+
'zipp==3.4.0;python_version>="3.6"',
171+
'rich==9.1.0;python_version>="3.6" and python_version<"4.0"',
172172
'flake8==3.7.9;python_version<"3.5"',
173173
'flake8==3.8.4;python_version>="3.5"',
174174
'pyflakes==2.1.1;python_version<"3.5"',

0 commit comments

Comments
 (0)