Skip to content

Commit 9c96a8c

Browse files
authored
Merge pull request #3649 from seleniumbase/refresh-dependencies
Refresh dependencies
2 parents 9c48161 + ce43535 commit 9c96a8c

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Diff for: requirements.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mycdp>=1.1.1
1515
pynose>=1.5.4
1616
platformdirs>=4.3.6;python_version<"3.9"
1717
platformdirs>=4.3.7;python_version>="3.9"
18-
typing-extensions>=4.13.0
18+
typing-extensions>=4.13.1
1919
sbvirtualdisplay>=1.4.0
2020
MarkupSafe==2.1.5;python_version<"3.9"
2121
MarkupSafe>=3.0.2;python_version>="3.9"
@@ -66,19 +66,19 @@ pyotp==2.9.0
6666
python-xlib==0.33;platform_system=="Linux"
6767
markdown-it-py==3.0.0
6868
mdurl==0.1.2
69-
rich==13.9.4
69+
rich>=14.0.0,<15
7070

7171
# --- Testing Requirements --- #
7272
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
7373

7474
coverage>=7.6.1;python_version<"3.9"
75-
coverage>=7.7.1;python_version>="3.9"
75+
coverage>=7.8.0;python_version>="3.9"
7676
pytest-cov>=5.0.0;python_version<"3.9"
77-
pytest-cov>=6.0.0;python_version>="3.9"
77+
pytest-cov>=6.1.0;python_version>="3.9"
7878
flake8==5.0.4;python_version<"3.9"
79-
flake8==7.1.2;python_version>="3.9"
79+
flake8==7.2.0;python_version>="3.9"
8080
mccabe==0.7.0
8181
pyflakes==2.5.0;python_version<"3.9"
82-
pyflakes==3.2.0;python_version>="3.9"
82+
pyflakes==3.3.2;python_version>="3.9"
8383
pycodestyle==2.9.1;python_version<"3.9"
84-
pycodestyle==2.12.1;python_version>="3.9"
84+
pycodestyle==2.13.0;python_version>="3.9"

Diff for: seleniumbase/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.36.4"
2+
__version__ = "4.36.5"

Diff for: setup.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
"pynose>=1.5.4",
165165
'platformdirs>=4.3.6;python_version<"3.9"',
166166
'platformdirs>=4.3.7;python_version>="3.9"',
167-
'typing-extensions>=4.13.0',
167+
'typing-extensions>=4.13.1',
168168
"sbvirtualdisplay>=1.4.0",
169169
'MarkupSafe==2.1.5;python_version<"3.9"',
170170
'MarkupSafe>=3.0.2;python_version>="3.9"',
@@ -215,7 +215,7 @@
215215
'python-xlib==0.33;platform_system=="Linux"',
216216
'markdown-it-py==3.0.0',
217217
'mdurl==0.1.2',
218-
'rich==13.9.4',
218+
'rich>=14.0.0,<15',
219219
],
220220
extras_require={
221221
# pip install -e .[allure]
@@ -230,20 +230,20 @@
230230
# Usage: coverage run -m pytest; coverage html; coverage report
231231
"coverage": [
232232
'coverage>=7.6.1;python_version<"3.9"',
233-
'coverage>=7.7.1;python_version>="3.9"',
233+
'coverage>=7.8.0;python_version>="3.9"',
234234
'pytest-cov>=5.0.0;python_version<"3.9"',
235-
'pytest-cov>=6.0.0;python_version>="3.9"',
235+
'pytest-cov>=6.1.0;python_version>="3.9"',
236236
],
237237
# pip install -e .[flake8]
238238
# Usage: flake8
239239
"flake8": [
240240
'flake8==5.0.4;python_version<"3.9"',
241-
'flake8==7.1.2;python_version>="3.9"',
241+
'flake8==7.2.0;python_version>="3.9"',
242242
"mccabe==0.7.0",
243243
'pyflakes==2.5.0;python_version<"3.9"',
244-
'pyflakes==3.2.0;python_version>="3.9"',
244+
'pyflakes==3.3.2;python_version>="3.9"',
245245
'pycodestyle==2.9.1;python_version<"3.9"',
246-
'pycodestyle==2.12.1;python_version>="3.9"',
246+
'pycodestyle==2.13.0;python_version>="3.9"',
247247
],
248248
# pip install -e .[ipdb]
249249
# (Not needed for debugging anymore. SeleniumBase now includes "pdbp".)
@@ -271,7 +271,7 @@
271271
# (An optional library for image-processing.)
272272
"pillow": [
273273
'Pillow>=10.4.0;python_version<"3.9"',
274-
'Pillow>=11.1.0;python_version>="3.9"',
274+
'Pillow>=11.2.0;python_version>="3.9"',
275275
],
276276
# pip install -e .[pip-system-certs]
277277
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)

0 commit comments

Comments
 (0)