Skip to content

Commit

Permalink
[py] websocket-client v.1.8.0 was added to setup.py (#14187)
Browse files Browse the repository at this point in the history
* websocket-client v.1.8.0 was added to setup.py

* update for py/setup.py

* added dependencies with the same versions in both BUILD.bazel and setup.py

* added supported python versions to BUILD.bazel
  • Loading branch information
iampopovich authored Jun 28, 2024
1 parent fe7e7c7 commit 5494108
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
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

0 comments on commit 5494108

Please sign in to comment.