-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3Packages.selenium: 4.22.0 -> 4.24.0
- Loading branch information
Showing
2 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
pkgs/development/python-modules/selenium/dont-build-the-selenium-manager.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
From e52d75248a5d18bcf965591eb240a11a23147634 Mon Sep 17 00:00:00 2001 | ||
From: Pavel Sobolev <[email protected]> | ||
Date: Sat, 3 Aug 2024 22:38:49 +0300 | ||
Subject: [PATCH] Don't build the Selenium Manager. | ||
|
||
--- | ||
py/setup.py | 7 ------- | ||
1 file changed, 7 deletions(-) | ||
|
||
diff --git a/py/setup.py b/py/setup.py | ||
index a71007f..fdda74e 100755 | ||
--- a/py/setup.py | ||
+++ b/py/setup.py | ||
@@ -19,7 +19,6 @@ from distutils.command.install import INSTALL_SCHEMES | ||
from os.path import dirname, join, abspath | ||
from setuptools import setup | ||
from setuptools.command.install import install | ||
-from setuptools_rust import Binding, RustExtension | ||
|
||
|
||
for scheme in INSTALL_SCHEMES.values(): | ||
@@ -84,12 +83,6 @@ setup_args = { | ||
"typing_extensions~=4.9", | ||
"websocket-client~=1.8", | ||
], | ||
- 'rust_extensions': [ | ||
- RustExtension( | ||
- {"selenium-manager": "selenium.webdriver.common.selenium-manager"}, | ||
- binding=Binding.Exec | ||
- ) | ||
- ], | ||
'zip_safe': False | ||
} | ||
|
||
-- | ||
2.45.2 | ||
|