Skip to content

Commit 7a5db59

Browse files
authored
Merge pull request #1333 from seleniumbase/refresh-python-dependencies
Refresh Python dependencies
2 parents 2bde0b7 + a7acff5 commit 7a5db59

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
<meta property="og:image" content="https://seleniumbase.io/cdn/img/mac_sb_logo_5.png" />
66
<link rel="icon" href="https://seleniumbase.io/img/green_logo2.png" />
77

8-
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.io/cdn/img/super_logo_i.png" alt="SeleniumBase" title="SeleniumBase" width="300" /></a></p>
8+
<p align="left"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.io/cdn/img/sb_banner_3_wide.png" alt="SeleniumBase" title="SeleniumBase" width="500" /></a></p>
99
<!-- View on GitHub -->
1010

11-
<p align="center"><div align="center">Fast, easy, and reliable Web/UI testing with Python.</div></p>
11+
<p align="left"><div align="left">✅ Fast, easy, and reliable Web/UI automation & testing with Python.</div></p>
1212

13-
<p align="center">
13+
<p align="left">
1414
<a href="https://github.com/seleniumbase/SeleniumBase/releases">
1515
<img src="https://img.shields.io/github/v/release/seleniumbase/SeleniumBase.svg?color=2277EE" alt="Latest Release on GitHub" /></a> <a href="https://pypi.python.org/pypi/seleniumbase" target="_blank">
1616
<img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=22AAEE" alt="Latest Release on PyPI" /></a> <a href="https://seleniumbase.io">
1717
<img src="https://img.shields.io/badge/docs-seleniumbase.io-11BBDD.svg" alt="SeleniumBase.io Docs" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/actions">
18-
<img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg" alt="SeleniumBase GitHub Actions" /></a> <a href="https://gitter.im/seleniumbase/SeleniumBase" target="_blank"><img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="SeleniumBase" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/stargazers"><img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg?color=19A57B" title="Stargazers" /></a>
18+
<img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg" alt="SeleniumBase GitHub Actions" /></a> <a href="https://gitter.im/seleniumbase/SeleniumBase" target="_blank"><img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="SeleniumBase" /></a>
1919
</p>
2020

21-
<p align="center">
21+
<p align="left">
2222
<a href="#python_installation">🚀 Start</a> |
2323
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/features_list.md">🎯 Features</a> |
2424
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/ReadMe.md">📝 Examples</a> |

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ plugins:
7777
on_pre_build: mkdocs_build.prepare:main
7878
# Page tree
7979
nav:
80-
- SeleniumBase: README.md
80+
- SeleniumBase ReadMe: README.md
8181
- Features List: help_docs/features_list.md
8282
- Running Example Tests: examples/ReadMe.md
8383
- Command Line Options: help_docs/customizing_test_runs.md

mkdocs_build/prepare.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def main(*args, **kwargs):
125125
if "<!-- View on GitHub -->" in line:
126126
changed = True
127127
line = (
128-
r'<p align="center"><div align="center">'
128+
r'<p align="left"><div align="left">'
129129
r'<a href="https://github.com/seleniumbase/SeleniumBase">'
130130
r'<img src="https://img.shields.io/badge/'
131131
r"✅%20💛%20View%20Code-on%20GitHub%20🌎%20🚀"
@@ -144,7 +144,7 @@ def main(*args, **kwargs):
144144
if "<!-- SeleniumBase Header1 -->" in line:
145145
changed = True
146146
line = (
147-
'<section align="center"><div align="center">'
147+
'<section align="left"><div align="left">'
148148
"<h2>✅ Reliable Browser Testing</h2>"
149149
"</div></section>"
150150
)

mkdocs_build/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ joblib==1.1.0
1010
Markdown==3.3.7
1111
MarkupSafe==2.1.1
1212
pyparsing==3.0.9
13-
keyring==23.5.0
13+
keyring==23.5.1
1414
pkginfo==1.8.2
1515
Jinja2==3.1.2
1616
click==8.1.3
1717
zipp==3.8.0
1818
ghp-import==2.1.0
1919
readme-renderer==35.0
2020
pymdown-extensions==9.4
21-
importlib-metadata==4.11.3
21+
importlib-metadata==4.11.4
2222
bleach==5.0.0
2323
jsmin==3.0.1
2424
lunr==0.6.2

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pip>=20.3.4;python_version<"3.6"
22
pip>=21.3.1;python_version>="3.6" and python_version<"3.7"
3-
pip>=22.1;python_version>="3.7"
3+
pip>=22.1.1;python_version>="3.7"
44
packaging>=20.9;python_version<"3.6"
55
packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.5"
@@ -126,7 +126,7 @@ Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
126126
Pillow==9.1.1;python_version>="3.7"
127127
typing-extensions==3.10.0.2;python_version<"3.6"
128128
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.9"
129-
rich==12.4.1;python_version>="3.6" and python_version<"4.0"
129+
rich==12.4.3;python_version>="3.6" and python_version<"4.0"
130130
tornado==5.1.1;python_version<"3.5"
131131
tornado==6.1;python_version>="3.5"
132132
pdfminer.six==20191110;python_version<"3.5"
@@ -139,7 +139,7 @@ pdfminer.six==20220319;python_version>="3.7"
139139

140140
coverage==5.5;python_version<"3.6"
141141
coverage==6.2;python_version>="3.6" and python_version<"3.7"
142-
coverage==6.3.3;python_version>="3.7"
142+
coverage==6.4;python_version>="3.7"
143143
pytest-cov==2.12.1;python_version<"3.6"
144144
pytest-cov==3.0.0;python_version>="3.6"
145145
flake8==3.7.9;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__ = "3.1.4"
2+
__version__ = "3.1.5"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
install_requires=[
126126
'pip>=20.3.4;python_version<"3.6"',
127127
'pip>=21.3.1;python_version>="3.6" and python_version<"3.7"',
128-
'pip>=22.1;python_version>="3.7"',
128+
'pip>=22.1.1;python_version>="3.7"',
129129
'packaging>=20.9;python_version<"3.6"',
130130
'packaging>=21.3;python_version>="3.6"',
131131
'setuptools>=44.1.1;python_version<"3.5"',
@@ -251,7 +251,7 @@
251251
'Pillow==9.1.1;python_version>="3.7"',
252252
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.9 for "rich"
253253
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.9"', # noqa: E501
254-
'rich==12.4.1;python_version>="3.6" and python_version<"4.0"',
254+
'rich==12.4.3;python_version>="3.6" and python_version<"4.0"',
255255
'tornado==5.1.1;python_version<"3.5"',
256256
'tornado==6.1;python_version>="3.5"',
257257
'pdfminer.six==20191110;python_version<"3.5"',
@@ -265,7 +265,7 @@
265265
"coverage": [
266266
'coverage==5.5;python_version<"3.6"',
267267
'coverage==6.2;python_version>="3.6" and python_version<"3.7"',
268-
'coverage==6.3.3;python_version>="3.7"',
268+
'coverage==6.4;python_version>="3.7"',
269269
'pytest-cov==2.12.1;python_version<"3.6"',
270270
'pytest-cov==3.0.0;python_version>="3.6"',
271271
],

0 commit comments

Comments
 (0)