diff --git a/requirements.txt b/requirements.txt index 9edf40c717e..e90a184ebdb 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pip>=25.0.1 packaging>=25.0 setuptools~=70.2;python_version<"3.10" -setuptools>=78.1.1;python_version>="3.10" +setuptools>=79.0.0;python_version>="3.10" wheel>=0.45.1 attrs>=25.3.0 certifi>=2025.1.31 @@ -39,7 +39,7 @@ sniffio==1.3.1 h11==0.14.0 outcome==1.3.0.post0 trio==0.27.0;python_version<"3.9" -trio==0.29.0;python_version>="3.9" +trio==0.30.0;python_version>="3.9" trio-websocket==0.12.2 wsproto==1.2.0 websocket-client==1.8.0 @@ -60,7 +60,7 @@ pytest-rerunfailures==15.0;python_version>="3.9" pytest-xdist==3.6.1 parameterized==0.9.0 behave==1.2.6 -soupsieve==2.6 +soupsieve==2.7 beautifulsoup4==4.13.4 pyotp==2.9.0 python-xlib==0.33;platform_system=="Linux" diff --git a/seleniumbase/__version__.py b/seleniumbase/__version__.py index 264d26169f1..d9897558f82 100755 --- a/seleniumbase/__version__.py +++ b/seleniumbase/__version__.py @@ -1,2 +1,2 @@ # seleniumbase package -__version__ = "4.37.4" +__version__ = "4.37.5" diff --git a/seleniumbase/undetected/cdp_driver/connection.py b/seleniumbase/undetected/cdp_driver/connection.py index 634c05db4d6..0629938394b 100644 --- a/seleniumbase/undetected/cdp_driver/connection.py +++ b/seleniumbase/undetected/cdp_driver/connection.py @@ -295,7 +295,6 @@ async def aclose(self): if self.listener and self.listener.running: self.listener.cancel() self.enabled_domains.clear() - await asyncio.sleep(0.015) try: await self.websocket.close() except Exception: diff --git a/setup.py b/setup.py index f7b74a2ecf9..d03b152d4d0 100755 --- a/setup.py +++ b/setup.py @@ -150,7 +150,7 @@ 'pip>=25.0.1', 'packaging>=25.0', 'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues - 'setuptools>=78.1.1;python_version>="3.10"', + 'setuptools>=79.0.0;python_version>="3.10"', 'wheel>=0.45.1', 'attrs>=25.3.0', "certifi>=2025.1.31", @@ -188,7 +188,7 @@ 'h11==0.14.0', 'outcome==1.3.0.post0', 'trio==0.27.0;python_version<"3.9"', - 'trio==0.29.0;python_version>="3.9"', + 'trio==0.30.0;python_version>="3.9"', 'trio-websocket==0.12.2', 'wsproto==1.2.0', 'websocket-client==1.8.0', @@ -209,7 +209,7 @@ 'pytest-xdist==3.6.1', 'parameterized==0.9.0', "behave==1.2.6", - 'soupsieve==2.6', + 'soupsieve==2.7', "beautifulsoup4==4.13.4", 'pyotp==2.9.0', 'python-xlib==0.33;platform_system=="Linux"',