Releases: codewithme-py/LeetCode_solutions
Releases · codewithme-py/LeetCode_solutions
Migration to uv & CI optimization
What's new?
We have finally moved from pip to uv — now the project works faster, and dependencies are managed more clearly.
Technical changes:
- Package manager: Transition to
uv. Addeduv.lockfor deterministic assemblies. - CI/CD: Updated GitHub Action update-readme.yml Now steps
lintиtestUse cachinguv, Which reduced the assembly time by 2-3 times. - Makefile: Command
make problemNow runs the script throughuv run. - Docs: README Fully updated with instructions under
uv.
How to update?
- Install uv:
brew install uv - Synchronize the project:
uv sync - Work as before through
make problemoruv run.