Skip to content

Commit 1def0f6

Browse files
authored
Merge pull request #919 from seleniumbase/update-dependencies
Refresh dependencies
2 parents 8ce761e + 5b2b079 commit 1def0f6

File tree

7 files changed

+21
-17
lines changed

7 files changed

+21
-17
lines changed

docs/instructions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Preparing the SeleniumBase Docs website with "mkdocs"
22

3-
Usage: (from top-level SeleniumBase)
3+
Usage: (from the top-level SeleniumBase folder)
44
pip install -r docs/requirements.txt
5-
mkdocs build --strict
5+
mkdocs build (OR "mkdocs build --strict" to fail on warnings)

docs/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
regex>=2021.4.4
2-
tqdm>=4.61.0
2+
tqdm>=4.61.1
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"
@@ -10,9 +10,9 @@ click==8.0.1
1010
readme-renderer==29.0
1111
pymdown-extensions==8.2
1212
importlib-metadata==4.5.0;python_version>="3.6"
13-
lunr==0.5.8
13+
lunr==0.6.0
1414
nltk==3.6.2
15-
mkdocs==1.1.2
15+
mkdocs==1.2.1
1616
mkdocs-material==7.1.3
1717
mkdocs-exclude-search==0.5.2;python_version>="3.6"
1818
mkdocs-simple-hooks==0.1.3

examples/test_apple_site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_apple_developer_site_webdriver_instructions(self):
1919
title = "Testing with WebDriver in Safari"
2020
self.type('[placeholder*="developer.apple.com"]', title + "\n")
2121
self.click("link=%s" % title)
22-
self.assert_element('div.localnav-content [href*="/documentation/"]')
22+
self.assert_element('nav.documentation-nav')
2323
self.assert_text(title, "h1")
2424
self.highlight("div.description div.abstract")
2525
self.highlight("h2")

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ more-itertools==8.8.0;python_version>="3.5"
3232
cssselect==1.1.0
3333
filelock==3.0.12
3434
fasteners==0.16;python_version<"3.6"
35-
fasteners==0.16.1;python_version>="3.6"
35+
fasteners==0.16.3;python_version>="3.6"
36+
execnet==1.9.0
3637
pluggy==0.13.1
3738
py==1.8.1;python_version<"3.5"
3839
py==1.10.0;python_version>="3.5"
@@ -49,7 +50,8 @@ pytest-rerunfailures==8.0;python_version<"3.5"
4950
pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"
5051
pytest-rerunfailures==10.0;python_version>="3.6"
5152
pytest-xdist==1.34.0;python_version<"3.5"
52-
pytest-xdist==2.2.1;python_version>="3.5"
53+
pytest-xdist==2.2.1;python_version>="3.5" and python_version<"3.6"
54+
pytest-xdist==2.3.0;python_version>="3.6"
5355
parameterized==0.8.1
5456
soupsieve==1.9.6;python_version<"3.5"
5557
soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"
@@ -65,7 +67,7 @@ pygments==2.9.0;python_version>="3.5"
6567
traitlets==4.3.3;python_version<"3.7"
6668
traitlets==5.0.5;python_version>="3.7"
6769
prompt-toolkit==1.0.18;python_version<"3.6"
68-
prompt-toolkit==3.0.18;python_version>="3.6"
70+
prompt-toolkit==3.0.19;python_version>="3.6"
6971
decorator==4.4.2;python_version<"3.5"
7072
decorator==5.0.9;python_version>="3.5"
7173
ipython==5.10.0;python_version<"3.5"
@@ -86,7 +88,7 @@ toml==0.10.2
8688
Pillow==6.2.2;python_version<"3.5"
8789
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
8890
Pillow==8.2.0;python_version>="3.6"
89-
rich==10.2.2;python_version>="3.6" and python_version<"4.0"
91+
rich==10.3.0;python_version>="3.6" and python_version<"4.0"
9092
tornado==5.1.1;python_version<"3.5"
9193
tornado==6.1;python_version>="3.5"
9294
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.10"
2+
__version__ = "1.63.11"

seleniumbase/fixtures/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class Reveal:
215215

216216

217217
class HighCharts:
218-
VER = "9.1.1"
218+
VER = "9.0.1" # Later versions have a bug that removes default colors
219219
HC_CSS = "https://code.highcharts.com/%s/css/highcharts.css" % VER
220220
HC_JS = "https://code.highcharts.com/%s/highcharts.js" % VER
221221
EXPORTING_JS = "https://code.highcharts.com/%s/modules/exporting.js" % VER

setup.py

Lines changed: 7 additions & 5 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.0'")
53+
os.system("python -m pip install --upgrade 'tqdm>=4.61.1'")
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")
@@ -147,7 +147,8 @@
147147
"cssselect==1.1.0",
148148
"filelock==3.0.12",
149149
'fasteners==0.16;python_version<"3.6"',
150-
'fasteners==0.16.1;python_version>="3.6"',
150+
'fasteners==0.16.3;python_version>="3.6"',
151+
"execnet==1.9.0",
151152
"pluggy==0.13.1",
152153
'py==1.8.1;python_version<"3.5"',
153154
'py==1.10.0;python_version>="3.5"',
@@ -164,7 +165,8 @@
164165
'pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
165166
'pytest-rerunfailures==10.0;python_version>="3.6"',
166167
'pytest-xdist==1.34.0;python_version<"3.5"',
167-
'pytest-xdist==2.2.1;python_version>="3.5"',
168+
'pytest-xdist==2.2.1;python_version>="3.5" and python_version<"3.6"',
169+
'pytest-xdist==2.3.0;python_version>="3.6"',
168170
"parameterized==0.8.1",
169171
'soupsieve==1.9.6;python_version<"3.5"',
170172
'soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"',
@@ -180,7 +182,7 @@
180182
'traitlets==4.3.3;python_version<"3.7"',
181183
'traitlets==5.0.5;python_version>="3.7"',
182184
'prompt-toolkit==1.0.18;python_version<"3.6"',
183-
'prompt-toolkit==3.0.18;python_version>="3.6"',
185+
'prompt-toolkit==3.0.19;python_version>="3.6"',
184186
'decorator==4.4.2;python_version<"3.5"',
185187
'decorator==5.0.9;python_version>="3.5"',
186188
'ipython==5.10.0;python_version<"3.5"',
@@ -201,7 +203,7 @@
201203
'Pillow==6.2.2;python_version<"3.5"',
202204
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
203205
'Pillow==8.2.0;python_version>="3.6"',
204-
'rich==10.2.2;python_version>="3.6" and python_version<"4.0"',
206+
'rich==10.3.0;python_version>="3.6" and python_version<"4.0"',
205207
'tornado==5.1.1;python_version<"3.5"',
206208
'tornado==6.1;python_version>="3.5"',
207209
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)