Merge pull request #919 from seleniumbase/update-dependencies

Refresh dependencies
This commit is contained in:
Michael Mintz 2021-06-18 12:09:47 -04:00 committed by GitHub
commit 1def0f680b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 17 deletions

View File

@ -1,5 +1,5 @@
Preparing the SeleniumBase Docs website with "mkdocs"
Usage: (from top-level SeleniumBase)
Usage: (from the top-level SeleniumBase folder)
pip install -r docs/requirements.txt
mkdocs build --strict
mkdocs build (OR "mkdocs build --strict" to fail on warnings)

View File

@ -1,5 +1,5 @@
regex>=2021.4.4
tqdm>=4.61.0
tqdm>=4.61.1
livereload==2.6.3;python_version>="3.6"
joblib==1.0.1;python_version>="3.6"
Markdown==3.3.4;python_version>="3.6"
@ -10,9 +10,9 @@ click==8.0.1
readme-renderer==29.0
pymdown-extensions==8.2
importlib-metadata==4.5.0;python_version>="3.6"
lunr==0.5.8
lunr==0.6.0
nltk==3.6.2
mkdocs==1.1.2
mkdocs==1.2.1
mkdocs-material==7.1.3
mkdocs-exclude-search==0.5.2;python_version>="3.6"
mkdocs-simple-hooks==0.1.3

View File

@ -19,7 +19,7 @@ class AppleTests(BaseCase):
title = "Testing with WebDriver in Safari"
self.type('[placeholder*="developer.apple.com"]', title + "\n")
self.click("link=%s" % title)
self.assert_element('div.localnav-content [href*="/documentation/"]')
self.assert_element('nav.documentation-nav')
self.assert_text(title, "h1")
self.highlight("div.description div.abstract")
self.highlight("h2")

View File

@ -32,7 +32,8 @@ more-itertools==8.8.0;python_version>="3.5"
cssselect==1.1.0
filelock==3.0.12
fasteners==0.16;python_version<"3.6"
fasteners==0.16.1;python_version>="3.6"
fasteners==0.16.3;python_version>="3.6"
execnet==1.9.0
pluggy==0.13.1
py==1.8.1;python_version<"3.5"
py==1.10.0;python_version>="3.5"
@ -49,7 +50,8 @@ pytest-rerunfailures==8.0;python_version<"3.5"
pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"
pytest-rerunfailures==10.0;python_version>="3.6"
pytest-xdist==1.34.0;python_version<"3.5"
pytest-xdist==2.2.1;python_version>="3.5"
pytest-xdist==2.2.1;python_version>="3.5" and python_version<"3.6"
pytest-xdist==2.3.0;python_version>="3.6"
parameterized==0.8.1
soupsieve==1.9.6;python_version<"3.5"
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"
traitlets==4.3.3;python_version<"3.7"
traitlets==5.0.5;python_version>="3.7"
prompt-toolkit==1.0.18;python_version<"3.6"
prompt-toolkit==3.0.18;python_version>="3.6"
prompt-toolkit==3.0.19;python_version>="3.6"
decorator==4.4.2;python_version<"3.5"
decorator==5.0.9;python_version>="3.5"
ipython==5.10.0;python_version<"3.5"
@ -86,7 +88,7 @@ toml==0.10.2
Pillow==6.2.2;python_version<"3.5"
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
Pillow==8.2.0;python_version>="3.6"
rich==10.2.2;python_version>="3.6" and python_version<"4.0"
rich==10.3.0;python_version>="3.6" and python_version<"4.0"
tornado==5.1.1;python_version<"3.5"
tornado==6.1;python_version>="3.5"
pdfminer.six==20191110;python_version<"3.5"

View File

@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "1.63.10"
__version__ = "1.63.11"

View File

@ -215,7 +215,7 @@ class Reveal:
class HighCharts:
VER = "9.1.1"
VER = "9.0.1" # Later versions have a bug that removes default colors
HC_CSS = "https://code.highcharts.com/%s/css/highcharts.css" % VER
HC_JS = "https://code.highcharts.com/%s/highcharts.js" % VER
EXPORTING_JS = "https://code.highcharts.com/%s/modules/exporting.js" % VER

View File

@ -50,7 +50,7 @@ if sys.argv[-1] == "publish":
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
os.system("python -m pip install --upgrade 'tqdm>=4.61.0'")
os.system("python -m pip install --upgrade 'tqdm>=4.61.1'")
print("\n*** Publishing The Release to PyPI: ***\n")
os.system("python -m twine upload dist/*") # Requires ~/.pypirc Keys
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@ -147,7 +147,8 @@ setup(
"cssselect==1.1.0",
"filelock==3.0.12",
'fasteners==0.16;python_version<"3.6"',
'fasteners==0.16.1;python_version>="3.6"',
'fasteners==0.16.3;python_version>="3.6"',
"execnet==1.9.0",
"pluggy==0.13.1",
'py==1.8.1;python_version<"3.5"',
'py==1.10.0;python_version>="3.5"',
@ -164,7 +165,8 @@ setup(
'pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
'pytest-rerunfailures==10.0;python_version>="3.6"',
'pytest-xdist==1.34.0;python_version<"3.5"',
'pytest-xdist==2.2.1;python_version>="3.5"',
'pytest-xdist==2.2.1;python_version>="3.5" and python_version<"3.6"',
'pytest-xdist==2.3.0;python_version>="3.6"',
"parameterized==0.8.1",
'soupsieve==1.9.6;python_version<"3.5"',
'soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"',
@ -180,7 +182,7 @@ setup(
'traitlets==4.3.3;python_version<"3.7"',
'traitlets==5.0.5;python_version>="3.7"',
'prompt-toolkit==1.0.18;python_version<"3.6"',
'prompt-toolkit==3.0.18;python_version>="3.6"',
'prompt-toolkit==3.0.19;python_version>="3.6"',
'decorator==4.4.2;python_version<"3.5"',
'decorator==5.0.9;python_version>="3.5"',
'ipython==5.10.0;python_version<"3.5"',
@ -201,7 +203,7 @@ setup(
'Pillow==6.2.2;python_version<"3.5"',
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
'Pillow==8.2.0;python_version>="3.6"',
'rich==10.2.2;python_version>="3.6" and python_version<"4.0"',
'rich==10.3.0;python_version>="3.6" and python_version<"4.0"',
'tornado==5.1.1;python_version<"3.5"',
'tornado==6.1;python_version>="3.5"',
'pdfminer.six==20191110;python_version<"3.5"',