diff --git a/requirements.txt b/requirements.txt index ab16bf74625..22be263b4c3 100755 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ setuptools~=70.2;python_version<"3.10" setuptools>=80.9.0;python_version>="3.10" wheel>=0.45.1 attrs>=25.3.0 -certifi>=2025.7.9 +certifi>=2025.7.14 exceptiongroup>=1.3.0 websockets~=13.1;python_version<"3.9" websockets>=15.0.1;python_version>="3.9" diff --git a/seleniumbase/__version__.py b/seleniumbase/__version__.py index 4c091e96fb4..925dcfaf316 100755 --- a/seleniumbase/__version__.py +++ b/seleniumbase/__version__.py @@ -1,2 +1,2 @@ # seleniumbase package -__version__ = "4.40.5" +__version__ = "4.40.6" diff --git a/seleniumbase/console_scripts/sb_install.py b/seleniumbase/console_scripts/sb_install.py index 3d33562acf3..32aa536f991 100644 --- a/seleniumbase/console_scripts/sb_install.py +++ b/seleniumbase/console_scripts/sb_install.py @@ -851,7 +851,7 @@ def main(override=None, intel_for_uc=None, force_uc=None): "Cannot determine which version of EdgeDriver to download!" ) if use_version.isdigit(): - edgedriver_st = "https://msedgedriver.azureedge.net/LATEST_RELEASE" + edgedriver_st = "https://msedgedriver.microsoft.com/LATEST_RELEASE" use_version = "%s_%s_%s" % (edgedriver_st, use_version, suffix) url_request = requests_get_with_retry(use_version) if url_request.ok: @@ -862,7 +862,7 @@ def main(override=None, intel_for_uc=None, force_uc=None): and use_version != "115.0.1901.183" ): use_version = "115.0.1901.183" - download_url = "https://msedgedriver.azureedge.net/%s/%s" % ( + download_url = "https://msedgedriver.microsoft.com/%s/%s" % ( use_version, file_name, ) diff --git a/setup.py b/setup.py index 8fae441b659..eb1d49afce8 100755 --- a/setup.py +++ b/setup.py @@ -153,7 +153,7 @@ 'setuptools>=80.9.0;python_version>="3.10"', 'wheel>=0.45.1', 'attrs>=25.3.0', - "certifi>=2025.7.9", + "certifi>=2025.7.14", "exceptiongroup>=1.3.0", 'websockets~=13.1;python_version<"3.9"', 'websockets>=15.0.1;python_version>="3.9"',