Skip to content

Commit 695c0bd

Browse files
andrewwhiteheadswcurran
authored andcommitted
fix library include path
Signed-off-by: Andrew Whitehead <cywolf@gmail.com>
1 parent 3d365f9 commit 695c0bd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
workflow_dispatch:
1919
inputs:
2020
publish:
21-
description: "Publish to Registries"
21+
description: "Publish to PyPI"
2222
required: true
2323
default: false
2424
type: boolean
@@ -28,6 +28,7 @@ jobs:
2828
name: Build library
2929

3030
strategy:
31+
fail-fast: false
3132
matrix:
3233
architecture: [linux-aarch64, linux-x86_64, windows-x86_64]
3334
python-version: ["3.8"]

indy_bls/lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def _load_cdll() -> CDLL:
7373
LOGGER.debug("_load_cdll: Resolved library name is: %s", lib_filename)
7474

7575
try:
76-
lib_path = os.path.join(os.path.dirname(__file__), "..", lib_filename)
76+
lib_path = os.path.join(os.path.dirname(__file__), lib_filename)
7777
res = CDLL(lib_path)
7878
LOGGER.debug("_load_cdll: <<< res: %s", res)
7979
return res

0 commit comments

Comments
 (0)