Skip to content

Commit 90855f4

Browse files
authored
Merge pull request #1151 from seleniumbase/refresh-python-dependencies
Refresh Python dependencies
2 parents 1cebb27 + dc75937 commit 90855f4

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ joblib==1.1.0;python_version>="3.6"
77
Markdown==3.3.6;python_version>="3.6"
88
MarkupSafe==2.0.1;python_version>="3.6"
99
pyparsing==3.0.6;python_version>="3.6"
10-
keyring==23.4.0;python_version>="3.6"
10+
keyring==23.5.0;python_version>="3.7"
1111
pkginfo==1.8.2;python_version>="3.6"
1212
Jinja2==3.0.3;python_version>="3.6"
1313
click==8.0.3;python_version>="3.6"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ platformdirs==2.4.1;python_version>="3.7"
101101
pathlib2==2.3.5;python_version<"3.5"
102102
importlib-metadata==2.0.0;python_version<"3.5"
103103
importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"
104-
virtualenv>=20.12.0
104+
virtualenv>=20.12.1
105105
pycparser==2.21
106106
pymysql==0.10.1;python_version<"3.6"
107107
pymysql==1.0.2;python_version>="3.6"

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__ = "2.3.5"
2+
__version__ = "2.3.6"

seleniumbase/console_scripts/sb_install.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ def invalid_run_command():
6565
exp += " sbase install chromedriver\n"
6666
exp += " sbase install geckodriver\n"
6767
exp += " sbase install edgedriver"
68-
exp += " sbase install chromedriver 94\n"
69-
exp += " sbase install chromedriver 94.0.4606.61\n"
68+
exp += " sbase install chromedriver 96\n"
69+
exp += " sbase install chromedriver 96.0.4664.45\n"
7070
exp += " sbase install chromedriver latest\n"
7171
exp += " sbase install chromedriver latest-1\n"
7272
exp += " sbase install chromedriver -p\n"
7373
exp += " sbase install chromedriver latest -p\n"
74-
exp += " sbase install edgedriver 94.0.992.38"
74+
exp += " sbase install edgedriver 96.0.1054.62"
7575
exp += " Output:\n"
7676
exp += " Installs the chosen webdriver to seleniumbase/drivers/\n"
7777
exp += " (chromedriver is required for Chrome automation)\n"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
222222
'importlib-metadata==2.0.0;python_version<"3.5"',
223223
'importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
224-
"virtualenv>=20.12.0", # Sync with importlib-metadata and pathlib2
224+
"virtualenv>=20.12.1", # Sync with importlib-metadata and pathlib2
225225
"pycparser==2.21",
226226
'pymysql==0.10.1;python_version<"3.6"',
227227
'pymysql==1.0.2;python_version>="3.6"',

0 commit comments

Comments
 (0)