fix: update Python command in README for packaging instructions

- Changed `python` to `python3` in the packaging section to ensure compatibility with Python 3 environments.
This commit is contained in:
2025-12-01 11:54:09 -06:00
parent 284517bdfa
commit 3848613a41

View File

@@ -43,7 +43,7 @@ You can run `make run` or `make develop` (a thin alias) to start the backend + f
### Python packaging ### 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 ```bash
python -m poetry install python -m poetry install