Skip to content

Fix asyncio issue #3690

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.37.4"
__version__ = "4.37.5"
1 change: 0 additions & 1 deletion seleniumbase/undetected/cdp_driver/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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',
Expand All @@ -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"',
Expand Down