We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc4b24 commit 4c5a6b8Copy full SHA for 4c5a6b8
justfile
@@ -16,6 +16,16 @@ clean:
16
rm -rf ./build/
17
rm -rf ./dist/
18
19
+[group("Build")]
20
+[doc("Build the wheel using pyproject.toml (modern build system).")]
21
+build:
22
+ python3 -m build
23
+
24
25
+[doc("Install the wheel locally (force reinstall).")]
26
+install:
27
+ pip3 install dist/bdkpython-*.whl --force-reinstall
28
29
[group("Submodule")]
30
[doc("Initialize bdk-ffi submodule to committed hash.")]
31
submodule-init:
0 commit comments