Skip to content

Commit 1fb8c0c

Browse files
authored
Merge pull request #923 from seleniumbase/update-dependencies
Update dependencies
2 parents cfa1bb9 + 3d20c3c commit 1fb8c0c

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

docs/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ Jinja2==3.0.1;python_version>="3.6"
99
click==8.0.1
1010
readme-renderer==29.0
1111
pymdown-extensions==8.2
12-
importlib-metadata==4.5.0;python_version>="3.6"
12+
importlib-metadata==4.6.0;python_version>="3.6"
1313
lunr==0.6.0
1414
nltk==3.6.2
15+
watchdog==2.1.3
1516
mkdocs==1.2.1
1617
mkdocs-material==7.1.3
1718
mkdocs-exclude-search==0.5.2;python_version>="3.6"

examples/test_checkboxes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_checkboxes_and_radio_buttons(self):
1818
"?filename=tryhtml5_input_type_radio"
1919
)
2020
self.switch_to_frame("iframeResult")
21-
option_button = "input#male"
21+
option_button = "input#css"
2222
self.assert_false(self.is_selected(option_button))
2323
self.click(option_button)
2424
self.assert_true(self.is_selected(option_button))

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=20.3.4;python_version<"3.6"
2-
pip>=21.1.2;python_version>="3.6"
2+
pip>=21.1.3;python_version>="3.6"
33
packaging>=20.9
44
typing-extensions>=3.10.0.0
55
setuptools>=44.1.1;python_version<"3.5"
@@ -23,7 +23,7 @@ jedi==0.18.0;python_version>="3.6"
2323
idna==2.10
2424
chardet==3.0.4;python_version<"3.6"
2525
chardet==4.0.0;python_version>="3.6"
26-
urllib3==1.26.5
26+
urllib3==1.26.6
2727
requests==2.25.1
2828
selenium==3.141.0
2929
msedge-selenium-tools==3.141.3
@@ -73,7 +73,7 @@ decorator==5.0.9;python_version>="3.5"
7373
ipython==5.10.0;python_version<"3.5"
7474
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
7575
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
76-
ipython==7.24.1;python_version>="3.7"
76+
ipython==7.25.0;python_version>="3.7"
7777
matplotlib-inline==0.1.2;python_version>="3.7"
7878
colorama==0.4.4
7979
pathlib2==2.3.5;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.63.12"
2+
__version__ = "1.63.13"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
115115
install_requires=[
116116
'pip>=20.3.4;python_version<"3.6"',
117-
'pip>=21.1.2;python_version>="3.6"',
117+
'pip>=21.1.3;python_version>="3.6"',
118118
"packaging>=20.9",
119119
"typing-extensions>=3.10.0.0",
120120
'setuptools>=44.1.1;python_version<"3.5"',
@@ -138,7 +138,7 @@
138138
"idna==2.10", # Must stay in sync with "requests"
139139
'chardet==3.0.4;python_version<"3.6"', # Stay in sync with "requests"
140140
'chardet==4.0.0;python_version>="3.6"', # Stay in sync with "requests"
141-
"urllib3==1.26.5", # Must stay in sync with "requests"
141+
"urllib3==1.26.6", # Must stay in sync with "requests"
142142
"requests==2.25.1",
143143
"selenium==3.141.0",
144144
"msedge-selenium-tools==3.141.3",
@@ -188,7 +188,7 @@
188188
'ipython==5.10.0;python_version<"3.5"',
189189
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
190190
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
191-
'ipython==7.24.1;python_version>="3.7"',
191+
'ipython==7.25.0;python_version>="3.7"',
192192
'matplotlib-inline==0.1.2;python_version>="3.7"',
193193
"colorama==0.4.4",
194194
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"

0 commit comments

Comments
 (0)