From be87629aba0a8f0cd95207cf1d240108afccb9f0 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Wed, 16 Feb 2022 21:29:43 -0500 Subject: [PATCH] Fix 'build the wheel' section of readme --- README.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 55df900..9f28457 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,7 @@ # bdk-python The Python language bindings for the [bitcoindevkit](https://github.com/bitcoindevkit). -See the [package on PyPI](https://pypi.org/project/bdkpython/). - -Currently supported architectures: -- macOS `arm64` -- macOS `x86_64` -- linux `x86_64` - +See the [package on PyPI](https://pypi.org/project/bdkpython/).
## Install from PyPI @@ -27,10 +21,12 @@ python -m tox ```shell # Install dependecies pip install -r requirements.txt + # Generate the bindings first bash generate.sh + # Build the wheel -python -m build +python3 setup.py -v bdist_wheel ```
@@ -38,4 +34,3 @@ python -m build ```shell pip install ./dist/bdkpython-0.0.1-py3-none-any.whl ``` -