Skip to content

Commit 5514d06

Browse files
authored
Merge pull request #1267 from seleniumbase/refresh-dependencies
Refresh Python dependencies
2 parents aff6fa4 + 0f859c3 commit 5514d06

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

examples/github_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_github(self):
2020
self.slow_click('a[href="/seleniumbase/SeleniumBase"]')
2121
self.click_if_visible('[data-action="click:signup-prompt#dismiss"]')
2222
self.assert_element("div.repository-content")
23-
self.assert_text("SeleniumBase", "h1")
23+
self.assert_text("SeleniumBase", "h2 strong")
2424
self.slow_click('a[title="seleniumbase"]')
2525
self.slow_click('a[title="fixtures"]')
2626
self.slow_click('a[title="base_case.py"]')

mkdocs_build/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Minimum Python version: 3.7
33

44
regex>=2022.3.15
5-
tqdm>=4.63.1
5+
tqdm>=4.64.0
66
docutils==0.18.1
77
python-dateutil==2.8.2
88
livereload==2.6.3
@@ -14,7 +14,7 @@ keyring==23.5.0
1414
pkginfo==1.8.2
1515
Jinja2==3.1.1
1616
click==8.1.2
17-
zipp==3.7.0
17+
zipp==3.8.0
1818
readme-renderer==34.0
1919
pymdown-extensions==9.3
2020
importlib-metadata==4.11.3

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.5"
77
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
88
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
9-
setuptools>=61.3.0;python_version>="3.7"
9+
setuptools>=62.0.0;python_version>="3.7"
1010
setuptools-scm>=5.0.2;python_version<"3.6"
1111
setuptools-scm>=6.4.2;python_version>="3.6"
1212
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
@@ -93,7 +93,7 @@ pygments==2.5.2;python_version<"3.5"
9393
pygments==2.11.2;python_version>="3.5"
9494
prompt-toolkit==1.0.18;python_version<"3.5"
9595
prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6"
96-
prompt-toolkit==3.0.28;python_version>="3.6"
96+
prompt-toolkit==3.0.29;python_version>="3.6"
9797
decorator==4.4.2;python_version<"3.5"
9898
decorator==5.1.1;python_version>="3.5"
9999
ipython==5.10.0;python_version<"3.5"
@@ -115,10 +115,10 @@ toml==0.10.2
115115
Pillow==6.2.2;python_version<"3.5"
116116
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
117117
Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
118-
Pillow==9.0.1;python_version>="3.7"
118+
Pillow==9.1.0;python_version>="3.7"
119119
typing-extensions==3.10.0.2;python_version<"3.6"
120120
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
121-
rich==12.0.1;python_version>="3.6" and python_version<"4.0"
121+
rich==12.1.0;python_version>="3.6" and python_version<"4.0"
122122
tornado==5.1.1;python_version<"3.5"
123123
tornado==6.1;python_version>="3.5"
124124
pdfminer.six==20191110;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__ = "2.4.28"
2+
__version__ = "2.4.29"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5252
os.system("python -m pip install --upgrade 'twine>=4.0.0'")
5353
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
54-
os.system("python -m pip install --upgrade 'tqdm>=4.63.1'")
54+
os.system("python -m pip install --upgrade 'tqdm>=4.64.0'")
5555
print("\n*** Rebuilding distribution packages: ***\n")
5656
os.system("python -m build") # Create new tar/wheel
5757
print("\n*** Publishing The Release to PyPI: ***\n")
@@ -131,7 +131,7 @@
131131
'setuptools>=44.1.1;python_version<"3.5"',
132132
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134-
'setuptools>=61.3.0;python_version>="3.7"',
134+
'setuptools>=62.0.0;python_version>="3.7"',
135135
'setuptools-scm>=5.0.2;python_version<"3.6"',
136136
'setuptools-scm>=6.4.2;python_version>="3.6"',
137137
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
@@ -218,7 +218,7 @@
218218
'pygments==2.11.2;python_version>="3.5"',
219219
'prompt-toolkit==1.0.18;python_version<"3.5"',
220220
'prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6"', # noqa: E501
221-
'prompt-toolkit==3.0.28;python_version>="3.6"',
221+
'prompt-toolkit==3.0.29;python_version>="3.6"',
222222
'decorator==4.4.2;python_version<"3.5"',
223223
'decorator==5.1.1;python_version>="3.5"',
224224
'ipython==5.10.0;python_version<"3.5"',
@@ -240,10 +240,10 @@
240240
'Pillow==6.2.2;python_version<"3.5"',
241241
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
242242
'Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"',
243-
'Pillow==9.0.1;python_version>="3.7"',
243+
'Pillow==9.1.0;python_version>="3.7"',
244244
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
245245
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
246-
'rich==12.0.1;python_version>="3.6" and python_version<"4.0"',
246+
'rich==12.1.0;python_version>="3.6" and python_version<"4.0"',
247247
'tornado==5.1.1;python_version<"3.5"',
248248
'tornado==6.1;python_version>="3.5"',
249249
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)