Skip to content
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

[py] websocket-client v.1.8.0 was added to setup.py #14187

Merged
6 changes: 4 additions & 2 deletions py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ py_wheel(
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description_file = "README.rst",
distribution = "selenium",
Expand All @@ -286,8 +288,8 @@ py_wheel(
"trio~=0.17",
"trio-websocket~=0.9",
"certifi>=2021.10.8",
"typing_extensions>=4.9.0",
"websocket-client>=1.8.0",
"typing_extensions~=4.9.0",
"websocket-client==1.8.0",
],
strip_path_prefixes = [
"py/",
Expand Down
17 changes: 11 additions & 6 deletions py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'],
'Programming Language :: Python :: 3.12',
],
'package_dir': {
'selenium': 'selenium',
'selenium.common': 'selenium/common',
Expand All @@ -61,22 +62,26 @@
'packages': ['selenium',
'selenium.common',
'selenium.webdriver',
'selenium.webdriver.chromium',
'selenium.webdriver.chrome',
'selenium.webdriver.chromium',
'selenium.webdriver.common',
'selenium.webdriver.support',
'selenium.webdriver.edge',
'selenium.webdriver.firefox',
'selenium.webdriver.ie',
'selenium.webdriver.edge',
'selenium.webdriver.remote',
'selenium.webdriver.support', ],
'selenium.webdriver.safari',
'selenium.webdriver.support',
'selenium.webdriver.webkitgtk',
'selenium.webdriver.wpewebkit',
],
'include_package_data': True,
'install_requires': [
"typing_extensions~= 4.9",
"urllib3[socks]>=1.26,<3",
"trio~=0.17",
"trio-websocket~=0.9",
"certifi>=2021.10.8",
"typing_extensions~= 4.9.0",
"websocket-client==1.8.0",
],
'zip_safe': False
}
Expand Down
Loading