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

selenium v4.15.0 #69

Merged
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
13 changes: 13 additions & 0 deletions recipe/0000-fix-se-manager-path.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/selenium/webdriver/common/selenium_manager.py b/selenium/webdriver/common/selenium_manager.py
index f174bda..6ba2892 100644
--- a/selenium/webdriver/common/selenium_manager.py
+++ b/selenium/webdriver/common/selenium_manager.py
@@ -41,7 +41,7 @@ class SeleniumManager:
:Returns: The Selenium Manager executable location
"""

- if path := os.getenv("SE_MANAGER_PATH") is not None:
+ if (path := os.getenv("SE_MANAGER_PATH")) is not None:
return Path(path)
else:
platform = sys.platform
13 changes: 0 additions & 13 deletions recipe/0000-se-manager-path.diff

This file was deleted.

9 changes: 3 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{% set version = "4.14.0" %}
{% set version = "4.15.0" %}

package:
name: selenium
version: {{ version }}

source:
- url: https://pypi.io/packages/source/s/selenium/selenium-{{ version }}.tar.gz
sha256: 0d14b0d9842366f38fb5f8f842cf7c042bcfa062affc6a0a86e4d634bdd0fe54
sha256: 1d339cb4577a2c617122ebe6342b7e9bca4cb4588a2d322c898f5df29c91df02
patches:
- 0000-se-manager-path.diff
- 0000-fix-se-manager-path.diff
- fn: LICENSE-selenium-{{ version }}
url:
- https://raw.githubusercontent.com/SeleniumHQ/selenium/selenium-{{ version }}-python/LICENSE
Expand Down Expand Up @@ -36,9 +36,6 @@ requirements:
- trio >=0.17,<1.dev0
- trio-websocket >=0.9,<1.dev0
- urllib3 >=1.26,<3
run_constrained:
# clean up after https://github.com/conda-forge/selenium-feedstock/pull/68
- selenium-manager >=4.14.0=*_1
test:
requires:
- pip
Expand Down