limbo icon indicating copy to clipboard operation
limbo copied to clipboard

[bindings/python] fix project name in txt files.

Open gkmngrgn opened this issue 2 months ago • 1 comments

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?

gkmngrgn avatar Dec 17 '24 02:12 gkmngrgn