[py] Bump dependencies for building distribution wheel #15977
Merged
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
💥 What does this PR do?
This PR updates the Python dependencies listed in
py/BUILD.bazel
(py_wheel
task). This is the dependency list used to build the Python wheel for distribution on PyPI.This was previously updated in
py/requirements.txt
andpy/pyproject.toml
(used for testing and local development), but it was not reflected in the wheel we are building.💡 Additional Considerations
Since this was not updated, Selenium
4.34
package was released with the oldurllib3[socks]~=2.4.0
dependency specifier listed. Anyone installing version4.34
will get the oldurllib3
package. Assuming this PR gets merged, the updated dependency specifier will be included in the next (4.35
) release.🔄 Types of changes
PR Type
Other
Description
Update
urllib3[socks]
dependency from~=2.4.0
to~=2.5.0
Update
certifi
dependency from>=2025.4.26
to>=2025.6.15
Synchronize wheel build dependencies with development requirements
Changes diagram
Changes walkthrough 📝
BUILD.bazel
Bump wheel build dependencies
py/BUILD.bazel
urllib3[socks]
dependency from~=2.4.0
to~=2.5.0
certifi
dependency from>=2025.4.26
to>=2025.6.15