Skip to content

Commit

Permalink
ECC-1793: develop binary wheel - change env var to ECCODES_PYTHON_USE…
Browse files Browse the repository at this point in the history
…_INSTALLED_BINARIES
  • Loading branch information
iainrussell committed Apr 19, 2024
1 parent 8ac54ab commit e9ca554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gribapi/bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def find_binary_libs(name):

name = _lookup(name)

if int(os.environ.get("PYTHON_ECCODES_USE_INSTALLED_BINARIES", "0")):
if int(os.environ.get("ECCODES_PYTHON_USE_INSTALLED_BINARIES", "0")):
logging.debug(
f"{name} lib search: PYTHON_ECCODES_USE_INSTALLED_BINARIES set, so using findlibs"
f"{name} lib search: ECCODES_PYTHON_USE_INSTALLED_BINARIES set, so using findlibs"
)
import findlibs

Expand Down

0 comments on commit e9ca554

Please sign in to comment.