Skip to content

Commit 31ab13f

Browse files
authored
Merge pull request #1271 from seleniumbase/refresh-python-dependencies
Refresh Python dependencies
2 parents 0add9ec + 91cf194 commit 31ab13f

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

examples/test_parse_soup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def click_menu_item(self, text):
99
# (This is useful when the selector ID is auto-generated.)
1010
pattern = re.compile(text)
1111
soup = self.get_beautiful_soup()
12-
the_id = soup.find(text=pattern).parent.parent.attrs["id"]
12+
the_id = soup.find(string=pattern).parent.parent.attrs["id"]
1313
self.click("#%s" % the_id)
1414

1515
def test_beautiful_soup_and_tinymce(self):

mkdocs_build/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ livereload==2.6.3
99
joblib==1.1.0
1010
Markdown==3.3.6
1111
MarkupSafe==2.1.1
12-
pyparsing==3.0.7
12+
pyparsing==3.0.8
1313
keyring==23.5.0
1414
pkginfo==1.8.2
1515
Jinja2==3.1.1
@@ -18,13 +18,13 @@ zipp==3.8.0
1818
readme-renderer==34.0
1919
pymdown-extensions==9.3
2020
importlib-metadata==4.11.3
21-
bleach==4.1.0
21+
bleach==5.0.0
2222
jsmin==3.0.1
2323
lunr==0.6.2
2424
nltk==3.7
2525
watchdog==2.1.7
2626
mkdocs==1.3.0
27-
mkdocs-material==8.2.8
27+
mkdocs-material==8.2.9
2828
mkdocs-exclude-search==0.6.4
2929
mkdocs-simple-hooks==0.1.5
3030
mkdocs-material-extensions==1.0.3

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ parameterized==0.8.1
8383
sbvirtualdisplay==1.0.0
8484
soupsieve==1.9.6;python_version<"3.5"
8585
soupsieve==2.1;python_version>="3.5" and python_version<"3.6"
86-
soupsieve==2.3.1;python_version>="3.6"
86+
soupsieve==2.3.2;python_version>="3.6"
8787
beautifulsoup4==4.9.3;python_version<"3.5"
88-
beautifulsoup4==4.10.0;python_version>="3.5"
88+
beautifulsoup4==4.10.0;python_version>="3.5" and python_version<"3.6"
89+
beautifulsoup4==4.11.1;python_version>="3.6"
8990
cryptography==2.9.2;python_version<"3.5"
9091
cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"
9192
cryptography==36.0.2;python_version>="3.6"

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__ = "2.4.31"
2+
__version__ = "2.4.32"

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,10 @@
208208
"sbvirtualdisplay==1.0.0",
209209
'soupsieve==1.9.6;python_version<"3.5"',
210210
'soupsieve==2.1;python_version>="3.5" and python_version<"3.6"',
211-
'soupsieve==2.3.1;python_version>="3.6"',
211+
'soupsieve==2.3.2;python_version>="3.6"',
212212
'beautifulsoup4==4.9.3;python_version<"3.5"',
213-
'beautifulsoup4==4.10.0;python_version>="3.5"',
213+
'beautifulsoup4==4.10.0;python_version>="3.5" and python_version<"3.6"', # noqa: E501
214+
'beautifulsoup4==4.11.1;python_version>="3.6"',
214215
'cryptography==2.9.2;python_version<"3.5"',
215216
'cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"',
216217
'cryptography==36.0.2;python_version>="3.6"',

0 commit comments

Comments
 (0)