mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 12:34:22 +01:00
Somehow the `make` command does not work because of the name mismatching. This PR will fix only this issue. For reproducing the issue: ``` $ make Checking requirements files... mkdir -p .tmp pip-compile pyproject.toml --quiet --output-file=.tmp/requirements.txt pip-compile pyproject.toml --quiet --extra=dev --output-file=.tmp/requirements-dev.txt diff -u requirements.txt .tmp/requirements.txt || (echo "requirements.txt doesn't match pyproject.toml" && exit 1) --- requirements.txt 2024-12-17 02:19:29.887227723 +0000 +++ .tmp/requirements.txt 2024-12-17 02:19:38.046065295 +0000 @@ -1,2 +1,2 @@ typing-extensions==4.12.2 - # via limbo (pyproject.toml) + # via pylimbo (pyproject.toml) requirements.txt doesn't match pyproject.toml make: *** [Makefile:28: check-requirements] Error 1 ``` ## Another issue... `maturin` is still not in requirements dev list. Shall we continue to install it manually or add it to dev list? Closes #495