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
poetry
touv
for 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:
poetry
withuv
for dependency management, reflected in theMakefile
,README.md
, andDockerfile
. Commands likepoetry install
andpoetry run
are replaced withuv sync
anduv run
respectively. [1] [2] [3].pre-commit-config.yaml
file to usepre-commit-hooks
andruff-pre-commit
instead of custom hooks for tools likepylint
,mypy
,flake8
, andisort
.flake8
,isort
, andmypy
(.flake8
,.isort.cfg
,mypy.ini
) and replaced their functionality withruff
inpyproject.toml
. [1] [2] [3] [4]Python and Dependency Updates:
.python-version
,Dockerfile
, and CI workflows in.github/workflows/build.yml
. [1] [2] [3]pyproject.toml
to use newer versions and restructured the file for compatibility withhatchling
.Docker and Deployment Enhancements:
Dockerfile
to useuv
for building and managing dependencies, replacingpoetry
. Added caching and improved dependency installation.docker-compose.yaml
file to simplify local development with Docker, including live-reloading support.Codebase and Metadata Updates:
1.0.0
inpyproject.toml
andsrc/template/version.py
. [1] [2]README.md
to reflect the transition touv
and removed outdated instructions forpoetry
. [1] [2]Build and CI Improvements:
Makefile
by replacingpoetry
commands withuv
equivalents and adding new targets likeinstall
,dev
,format
, andfix
..github/workflows/build.yml
to useuv
and Python 3.11.