Skip to content

Commit 4c40d60

Browse files
authored
Merge pull request #930 from seleniumbase/refresh-python-dependencies
Refresh Python Dependencies
2 parents 1fb8c0c + b3139e6 commit 4c40d60

File tree

6 files changed

+28
-25
lines changed

6 files changed

+28
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ pytest my_first_test.py --demo
208208
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py"><img src="https://seleniumbase.io/cdn/gif/my_first_test_4.gif" alt="SeleniumBase Demo Mode" title="SeleniumBase Demo Mode" /></a>
209209
210210
* By default, **[CSS Selectors](https://www.w3schools.com/cssref/css_selectors.asp)** are used for finding page elements.
211-
* If you're new to CSS Selectors, games like [Flukeout](http://flukeout.github.io/) can help you learn.
211+
* If you're new to CSS Selectors, games like [CSS Diner](http://flukeout.github.io/) can help you learn.
212212
* Here are some common ``SeleniumBase`` methods that you might find in tests:
213213
214214
```python

docs/requirements.txt

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
regex>=2021.4.4
2-
tqdm>=4.61.1
1+
regex>=2021.7.6
2+
tqdm>=4.61.2
33
livereload==2.6.3;python_version>="3.6"
44
joblib==1.0.1;python_version>="3.6"
55
Markdown==3.3.4;python_version>="3.6"
66
MarkupSafe==2.0.1;python_version>="3.6"
77
docutils==0.17.1
88
Jinja2==3.0.1;python_version>="3.6"
9-
click==8.0.1
9+
click==8.0.1;python_version>="3.6"
10+
zipp==3.5.0;python_version>="3.6"
1011
readme-renderer==29.0
11-
pymdown-extensions==8.2
12-
importlib-metadata==4.6.0;python_version>="3.6"
13-
lunr==0.6.0
14-
nltk==3.6.2
15-
watchdog==2.1.3
16-
mkdocs==1.2.1
17-
mkdocs-material==7.1.3
12+
pymdown-extensions==8.2;python_version>="3.6"
13+
importlib-metadata==4.6.1;python_version>="3.6"
14+
lunr==0.6.0;python_version>="3.6"
15+
nltk==3.6.2;python_version>="3.6"
16+
watchdog==2.1.3;python_version>="3.6"
17+
mkdocs==1.2.1;python_version>="3.6"
18+
mkdocs-material==7.1.3;python_version>="3.6"
1819
mkdocs-exclude-search==0.5.2;python_version>="3.6"
1920
mkdocs-simple-hooks==0.1.3
20-
mkdocs-material-extensions==1.0.1
21+
mkdocs-material-extensions==1.0.1;python_version>="3.6"
2122
mkdocs-minify-plugin==0.4.0

examples/parameterized_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class GoogleTests(BaseCase):
66
@parameterized.expand(
77
[
88
["PyPI", "pypi.org", 'img[alt="PyPI"]'],
9-
["Wikipedia", "wikipedia.org", "div#p-logo"],
9+
["Wikipedia", "wikipedia.org", "img.central-featured-logo"],
1010
["SeleniumBase", "seleniumbase/SeleniumBase", 'img[title*="Sel"]'],
1111
]
1212
)

requirements.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
pip>=20.3.4;python_version<"3.6"
22
pip>=21.1.3;python_version>="3.6"
3-
packaging>=20.9
3+
packaging>=20.9;python_version<"3.6"
4+
packaging>=21.0;python_version>="3.6"
45
typing-extensions>=3.10.0.0
56
setuptools>=44.1.1;python_version<"3.5"
67
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
7-
setuptools>=57.0.0;python_version>="3.6"
8+
setuptools>=57.1.0;python_version>="3.6"
89
setuptools-scm==5.0.2;python_version<"3.6"
910
setuptools-scm>=6.0.1;python_version>="3.6"
1011
wheel>=0.36.2
@@ -48,7 +49,7 @@ pytest-metadata==1.11.0;python_version>="3.6"
4849
pytest-ordering==0.6
4950
pytest-rerunfailures==8.0;python_version<"3.5"
5051
pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"
51-
pytest-rerunfailures==10.0;python_version>="3.6"
52+
pytest-rerunfailures==10.1;python_version>="3.6"
5253
pytest-xdist==1.34.0;python_version<"3.5"
5354
pytest-xdist==2.2.1;python_version>="3.5" and python_version<"3.6"
5455
pytest-xdist==2.3.0;python_version>="3.6"
@@ -87,8 +88,8 @@ cffi==1.14.5
8788
toml==0.10.2
8889
Pillow==6.2.2;python_version<"3.5"
8990
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
90-
Pillow==8.2.0;python_version>="3.6"
91-
rich==10.4.0;python_version>="3.6" and python_version<"4.0"
91+
Pillow==8.3.0;python_version>="3.6"
92+
rich==10.5.0;python_version>="3.6" and python_version<"4.0"
9293
tornado==5.1.1;python_version<"3.5"
9394
tornado==6.1;python_version>="3.5"
9495
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__ = "1.63.13"
2+
__version__ = "1.63.14"

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5151
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
5252
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
53-
os.system("python -m pip install --upgrade 'tqdm>=4.61.1'")
53+
os.system("python -m pip install --upgrade 'tqdm>=4.61.2'")
5454
print("\n*** Publishing The Release to PyPI: ***\n")
5555
os.system("python -m twine upload dist/*") # Requires ~/.pypirc Keys
5656
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@@ -115,11 +115,12 @@
115115
install_requires=[
116116
'pip>=20.3.4;python_version<"3.6"',
117117
'pip>=21.1.3;python_version>="3.6"',
118-
"packaging>=20.9",
118+
'packaging>=20.9;python_version<"3.6"',
119+
'packaging>=21.0;python_version>="3.6"',
119120
"typing-extensions>=3.10.0.0",
120121
'setuptools>=44.1.1;python_version<"3.5"',
121122
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
122-
'setuptools>=57.0.0;python_version>="3.6"',
123+
'setuptools>=57.1.0;python_version>="3.6"',
123124
'setuptools-scm==5.0.2;python_version<"3.6"',
124125
'setuptools-scm>=6.0.1;python_version>="3.6"',
125126
"wheel>=0.36.2",
@@ -163,7 +164,7 @@
163164
"pytest-ordering==0.6",
164165
'pytest-rerunfailures==8.0;python_version<"3.5"',
165166
'pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
166-
'pytest-rerunfailures==10.0;python_version>="3.6"',
167+
'pytest-rerunfailures==10.1;python_version>="3.6"',
167168
'pytest-xdist==1.34.0;python_version<"3.5"',
168169
'pytest-xdist==2.2.1;python_version>="3.5" and python_version<"3.6"',
169170
'pytest-xdist==2.3.0;python_version>="3.6"',
@@ -202,8 +203,8 @@
202203
"toml==0.10.2",
203204
'Pillow==6.2.2;python_version<"3.5"',
204205
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
205-
'Pillow==8.2.0;python_version>="3.6"',
206-
'rich==10.4.0;python_version>="3.6" and python_version<"4.0"',
206+
'Pillow==8.3.0;python_version>="3.6"',
207+
'rich==10.5.0;python_version>="3.6" and python_version<"4.0"',
207208
'tornado==5.1.1;python_version<"3.5"',
208209
'tornado==6.1;python_version>="3.5"',
209210
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)