| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The 'highest' resolution strategy was causing CI failures because it was picking up ruff==0.14.12 which doesn't have wheels for win_amd64 and some Linux glibc versions. Replace it with 'locked' which uses the frozen lockfile versions, providing more stable CI while still testing lowest-direct for minimum version compatibility. Claude-Generated-By: Claude Code (cli/claude-opus-4-5=100%) Claude-Steers: 1 Claude-Permission-Prompts: 1 Claude-Escapes: 0
| Back | FazBrowse Home | New Git URL |
Summary
Replace the highest dependency resolution strategy with locked in the CI test matrix.
Motivation and Context
The highest resolution strategy was causing CI failures across multiple PRs because it was picking up ruff==0.14.12 which doesn't have wheels for:
This was causing failures like:
Changes
Replace highest with locked:
This provides:
Breaking Changes
None. This only affects CI configuration.
Checklist