Merged
Conversation
Owner
Author
|
Fix #172 |
This was referenced Feb 20, 2026
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.
This pull request introduces a major refactor of Python dependency management and linting tools across the project, replacing legacy tools (Black, Isort, Flake8, Pylint, Mypy) with modern alternatives (uv, ruff and ty). It updates the CI workflow, Dockerfile, documentation, and analyzer base code to streamline development, improve performance, and simplify setup. Additionally, it modernizes type annotations and code style, removes legacy comments, and improves thread/process safety in analyzer implementations.
Dependency and Tooling Modernization
pipand requirements files to uv andpyproject.toml, updating CI (.github/workflows/lint.yml) and Dockerfile to useuvfor installing and syncing dependencies.README.md,CONTRIBUTING.md).Documentation Updates
CONTRIBUTING.mdto reflect new dependency and linting workflow, including instructions for uv, ruff, and ty, and revised pre-commit hook examples.pyproject.toml), improved various contribution guidelines, and added tips for switching between dev/prod compose files.Codebase Refactoring
aperisolve/analyzers/base_analyzer.py, replacingOptionalwith| None, and improved method signatures for clarity and safety.SubprocessAnalyzerto use asyncio for improved performance and reliability, and enhanced thread/process safety in result updates.Cleanup and Consistency
Miscellaneous Improvements
README.mdto reflect new tooling.