File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 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
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"]
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments