Skip to content

Commit 3f8ef43

Browse files
committed
feat: update justfile to include local build command
1 parent 42750f1 commit 3f8ef43

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

justfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ clean:
1616
rm -rf ./build/
1717
rm -rf ./dist/
1818

19+
[group("Build")]
20+
[doc("Build the wheel using pyproject.toml (modern build system).")]
21+
build:
22+
python3 -m build
23+
24+
[group("Build")]
25+
[doc("Install the wheel locally (force reinstall).")]
26+
install:
27+
pip3 install dist/bdkpython-*.whl --force-reinstall
28+
1929
[group("Submodule")]
2030
[doc("Initialize bdk-ffi submodule to committed hash.")]
2131
submodule-init:

0 commit comments

Comments
 (0)