Skip to content

Commit

Permalink
Fix Python libraries' names to prepare for releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Apr 25, 2023
1 parent d8718c3 commit 89e85a2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/publish-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ jobs:
- name: "Install requirements"
run: ${PYBIN}/pip install -r requirements.txt

- name: "Generate bdk.py"
- name: "Generate bdk.py and binaries"
run: bash generate.sh

- name: "Build wheel"
run: ${PYBIN}/python setup.py bdist_wheel --verbose
# Specifying the plat-name argument is necessary to build a wheel with the correct name,
# see issue #350 for more information
run: ${PYBIN}/python setup.py bdist_wheel --plat-name manylinux_2_17_x86_64 --verbose

- uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -71,7 +73,7 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: "Generate bdk.py"
- name: "Generate bdk.py and binaries"
run: |
python3 --version
rustup target add aarch64-apple-darwin
Expand All @@ -81,7 +83,9 @@ jobs:
- name: "Build wheel"
env:
ARCHFLAGS: "-arch x86_64 -arch arm64"
run: python3 setup.py bdist_wheel --verbose
# Specifying the plat-name argument is necessary to build a wheel with the correct name,
# see issue #350 for more information
run: python3 setup.py bdist_wheel --plat-name macosx_12_0_universal2 --verbose

- uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -109,7 +113,7 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: "Generate bdk.py"
- name: "Generate bdk.py and binaries"
run: |
python --version
pip install --user -r requirements.txt
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,13 @@ jobs:
- name: "Install requirements"
run: ${PYBIN}/pip install -r requirements.txt

- name: "Generate bdk.py"
- name: "Generate bdk.py and binaries"
run: bash generate.sh

- name: "Build wheel"
run: ${PYBIN}/python setup.py bdist_wheel --verbose
# Specifying the plat-name argument is necessary to build a wheel with the correct name,
# see issue #350 for more information
run: ${PYBIN}/python setup.py bdist_wheel --plat-name manylinux_2_17_x86_64 --verbose

- name: "Install wheel"
run: ${PYBIN}/pip install ./dist/*.whl
Expand All @@ -75,7 +77,9 @@ jobs:
strategy:
matrix:
python:
- "3.8"
# 3.8 returns an error for the macos-12 image when we try to install the wheel:
# bdkpython-0.28.0.dev0-cp38-cp38-macosx_12_0_universal2.whl is not a supported wheel on this platform.
# - "3.8"
- "3.9"
- "3.10"
steps:
Expand All @@ -87,7 +91,7 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: "Generate bdk.py"
- name: "Generate bdk.py and binaries"
run: |
python3 --version
rustup target add aarch64-apple-darwin
Expand All @@ -97,7 +101,7 @@ jobs:
- name: "Build wheel"
env:
ARCHFLAGS: "-arch x86_64 -arch arm64"
run: python3 setup.py bdist_wheel --verbose
run: python3 setup.py bdist_wheel --plat-name macosx_12_0_universal2 --verbose

- name: "Install wheel"
run: pip3 install ./dist/*.whl
Expand Down
3 changes: 3 additions & 0 deletions bdk-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,7 @@
url="https://github.com/bitcoindevkit/bdk-ffi",
author="Alekos Filini <alekos.filini@gmail.com>, Steve Myers <steve@notmandatory.org>",
license="MIT or Apache 2.0",
# This is required to ensure the library name includes the python version, abi, and platform tags
# See issue #350 for more information
has_ext_modules=lambda: True,
)

0 comments on commit 89e85a2

Please sign in to comment.