From 3848613a4192ac0e54fcec10953e1b768751266e Mon Sep 17 00:00:00 2001 From: Ivan Date: Mon, 1 Dec 2025 11:54:09 -0600 Subject: [PATCH] fix: update Python command in README for packaging instructions - Changed `python` to `python3` in the packaging section to ensure compatibility with Python 3 environments. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd0fc19..a706350 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ You can run `make run` or `make develop` (a thin alias) to start the backend + f ### Python packaging -The Python build is driven entirely by Poetry now. Run `python scripts/sync_version.py` or `make sync-version` before packaging so `pyproject.toml` and `src/version.py` match `package.json`. After that: +The Python build is driven entirely by Poetry now. Run `python3 scripts/sync_version.py` or `make sync-version` before packaging so `pyproject.toml` and `src/version.py` match `package.json`. After that: ```bash python -m poetry install