Relax attrs upper bound to allow attrs>=26 - #198
Merged
Conversation
No IssuesNo application code changes were detected to scan. The PR contains only configuration files, documentation, or other non-code files. fossabot analyzed this PR using SAST security analysis (changed files only). |
Agent-Logs-Url: https://github.com/bluet/proxybroker2/sessions/69e08d41-970f-4ff3-bc2d-3005984b8a22 Co-authored-by: bluet <51141+bluet@users.noreply.github.com>
No IssuesNo application code changes were detected to scan. The PR contains only configuration files, documentation, or other non-code files. fossabot analyzed this PR using SAST security analysis (changed files only). |
|
Copilot
AI
changed the title
[WIP] Fix attrs dependency conflict for seleniumbase compatibility
Relax attrs upper bound to allow attrs>=26
May 6, 2026
bluet
marked this pull request as ready for review
May 6, 2026 20:45
8 tasks
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.



attrs = "^25.3.0"(Poetry caret =>=25.3.0,<26.0.0) blocks co-installation with packages likeseleniumbase>=4.48.4that requireattrs>=26.1.0. Sinceattrs26.x is backward compatible, the upper bound is unnecessary.Change
pyproject.toml:attrs = "^25.3.0"→attrs = ">=25.3.0"(drops artificial<26ceiling)