Skip to content

Commit

Permalink
fix library include path
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Whitehead <cywolf@gmail.com>
  • Loading branch information
andrewwhitehead authored and swcurran committed Aug 10, 2023
1 parent 3d365f9 commit 695c0bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
workflow_dispatch:
inputs:
publish:
description: "Publish to Registries"
description: "Publish to PyPI"
required: true
default: false
type: boolean
Expand All @@ -28,6 +28,7 @@ jobs:
name: Build library

strategy:
fail-fast: false
matrix:
architecture: [linux-aarch64, linux-x86_64, windows-x86_64]
python-version: ["3.8"]
Expand Down
2 changes: 1 addition & 1 deletion indy_bls/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _load_cdll() -> CDLL:
LOGGER.debug("_load_cdll: Resolved library name is: %s", lib_filename)

try:
lib_path = os.path.join(os.path.dirname(__file__), "..", lib_filename)
lib_path = os.path.join(os.path.dirname(__file__), lib_filename)
res = CDLL(lib_path)
LOGGER.debug("_load_cdll: <<< res: %s", res)
return res
Expand Down

0 comments on commit 695c0bd

Please sign in to comment.