Add selenium-manager executables to python manifest#13998
Merged
diemol merged 2 commits intoSeleniumHQ:trunkfrom May 21, 2024
Merged
Add selenium-manager executables to python manifest#13998diemol merged 2 commits intoSeleniumHQ:trunkfrom
selenium-manager executables to python manifest#13998diemol merged 2 commits intoSeleniumHQ:trunkfrom
Conversation
Contributor
PR Review 🔍
|
selenium-manager executables to python manifest
Contributor
PR Code Suggestions ✨
|
5 tasks
sandeepsuryaprasad
pushed a commit
to sandeepsuryaprasad/selenium
that referenced
this pull request
Oct 29, 2024
Add selenium-manager artifacts to python manifest Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
Description
Add the
selenium-managerexecutables to the MANIFEST.in file so it gets installed correctly.Motivation and Context
The python sdist installation was not copying the
selenium-managerexecutables when doing apip install /path/to/sdist. This error was happening:selenium.common.exceptions.WebDriverException: Message: Unable to obtain working Selenium Manager binary; /tmp/testvirtualenv/lib/python3.12/site-packages/selenium/webdriver/common/macos/selenium-managerThis is not an issue in the wheel install since the bazel build automatically includes those.
However, I am forced to use the sdist (via the homebrew-pypi-poet).
Types of changes
Checklist
PR Type
Bug fix, Enhancement
Description
selenium-managerexecutables for Linux, macOS, and Windows to the MANIFEST.in file to ensure they are included in the Python sdist installation.selenium-managerexecutables were not being copied duringpip install /path/to/sdist, causing aWebDriverException.Changes walkthrough 📝
MANIFEST.in
Include `selenium-manager` executables in Python sdistpy/MANIFEST.in
selenium-managerexecutables for Linux, macOS, and Windows tothe MANIFEST.in file.