Feature/next major v3#68
Merged
Merged
Conversation
…and Mypy with Ruff
…put, delegating UI responsibilities to the CLI module.
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 comprehensive modernization of the project's development environment, dependency management, and toolchain. It drops support for Python 3.8 and 3.9, migrates the project configuration from legacy setup files to a modern pyproject.toml using
uvas the package manager, and replaces legacy tools with Ruff for faster, unified linting and formatting.Architecturally, the changes decouple the user interface from the core business logic by removing all terminal-specific formatting and Click framework dependencies from core.py and storage.py, delegating those responsibilities entirely to cli.py. Additionally, the entire test suite has been converted to modern, idiomatic
pytestconventions and fixtures, improving long-term test readability and maintainability.Finally, CI/CD workflows under the workflows directory have been streamlined and secured. This includes simplifying the release steps in release.yml, specifying least-privilege permissions, upgrading Node.js versions for action runners, and adding developer guidelines in AGENTS.md along with updates to the README.md.