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 significant changes to the project, transitioning from
poetrytouvfor dependency management, updating the Python version to 3.11, and replacing several tools for linting, formatting, and testing. It also includes updates to the Docker configuration and project metadata. Below is a summary of the most important changes grouped by theme.Dependency Management and Tooling Updates:
poetrywithuvfor dependency management, reflected in theMakefile,README.md, andDockerfile. Commands likepoetry installandpoetry runare replaced withuv syncanduv runrespectively. [1] [2] [3].pre-commit-config.yamlfile to usepre-commit-hooksandruff-pre-commitinstead of custom hooks for tools likepylint,mypy,flake8, andisort.flake8,isort, andmypy(.flake8,.isort.cfg,mypy.ini) and replaced their functionality withruffinpyproject.toml. [1] [2] [3] [4]Python and Dependency Updates:
.python-version,Dockerfile, and CI workflows in.github/workflows/build.yml. [1] [2] [3]pyproject.tomlto use newer versions and restructured the file for compatibility withhatchling.Docker and Deployment Enhancements:
Dockerfileto useuvfor building and managing dependencies, replacingpoetry. Added caching and improved dependency installation.docker-compose.yamlfile to simplify local development with Docker, including live-reloading support.Codebase and Metadata Updates:
1.0.0inpyproject.tomlandsrc/template/version.py. [1] [2]README.mdto reflect the transition touvand removed outdated instructions forpoetry. [1] [2]Build and CI Improvements:
Makefileby replacingpoetrycommands withuvequivalents and adding new targets likeinstall,dev,format, andfix..github/workflows/build.ymlto useuvand Python 3.11.