You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,4 +16,6 @@ PRs, bug reports, feature requests, documentation, and other enhancements and im
16
16
* Has it been tested? How?
17
17
* Does the code style match the overall code style of the project? Long lines are preferred, so please do not use formatters that turn 1 line into 4 lines.
18
18
* Please use type annotations.
19
-
* Please run flake8 and fix any formatting issues it uncovers.
19
+
* Use **uv** for installs (canonical): pin matches [`.python-version`](.python-version), then `uv sync` with any extras you need (`--extra socks`, `--extra ccxt`, `--extra kafka`, etc.), and `uv run pytest`.
20
+
* After changing dependencies in [`pyproject.toml`](pyproject.toml): run `uv lock`, then `uv export --frozen --no-dev --no-editable --format requirements-txt -o requirements.txt` (or rely on the `uv-export` pre-commit hook). **Do not hand-edit**[`requirements.txt`](requirements.txt); it is generated for `pip install -r` compatibility only.
21
+
* Please run **ruff** (`uv run ruff check .`) and fix any issues it uncovers.
0 commit comments