mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-12-23 08:21:09 +00: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 |
||
|---|---|---|
| .. | ||
| limbo | ||
| src | ||
| tests | ||
| build.rs | ||
| Cargo.toml | ||
| example.py | ||
| Makefile | ||
| pyproject.toml | ||
| requirements-dev.txt | ||
| requirements.txt | ||