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 76cfdda commit 42750f1Copy full SHA for 42750f1
README.md
@@ -21,8 +21,16 @@ This repository uses the bdk-ffi repository as a git submodule. Here are useful
21
22
```sh
23
source .localpythonenv/bin/activate
24
-bash scripts/generate-macos-arm64.sh
25
-python3 setup.py bdist_wheel
+
+# Generate FFI bindings
26
+bash scripts/generate-macos-arm64.sh # or the appropriate script for your OS
27
28
+# Build the wheel
29
+python3 -m build
30
31
+# Install the wheel (force reinstall if needed)
32
pip3 install ./dist/bdkpython-<yourversion>.whl --force-reinstall
33
34
+# Run tests
35
python3 -m unittest --verbose
36
```
0 commit comments