Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ format: format-python
cargo fmt
.PHONY: format

build:
maturin develop
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Xuanwo is adding uv support in #4221 , might be worth directly adding it there or waiting for that merged first?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's better to add it here directly, so we won't need to keep any PRs pending.

.PHONY: build

clean:
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wish we can remove this after cargo gc been stablized.

rm -rf ./target
.PHONY: clean

format-python:
ruff format python
ruff check --fix python
Expand Down
Loading