Skip to content

Commit 42750f1

Browse files
committed
docs: update README.md file to reflect changes in the building process
1 parent 76cfdda commit 42750f1

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,16 @@ This repository uses the bdk-ffi repository as a git submodule. Here are useful
2121

2222
```sh
2323
source .localpythonenv/bin/activate
24-
bash scripts/generate-macos-arm64.sh
25-
python3 setup.py bdist_wheel
24+
25+
# 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)
2632
pip3 install ./dist/bdkpython-<yourversion>.whl --force-reinstall
33+
34+
# Run tests
2735
python3 -m unittest --verbose
2836
```

0 commit comments

Comments
 (0)