Skip to content

Commit

Permalink
Disable building stub by default (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthrok authored Oct 4, 2024
1 parent 50fccb5 commit b74e902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _env(var, default=False):
_SPDL_USE_NVCODEC = _env("SPDL_USE_NVCODEC")
_SPDL_USE_NVJPEG = _env("SPDL_USE_NVJPEG")
_SPDL_USE_CUDA = _env("SPDL_USE_CUDA", _SPDL_USE_NVCODEC or _SPDL_USE_NVJPEG)
_SPDL_BUILD_STUB = _env("SPDL_BUILD_STUB", not _SPDL_USE_CUDA)
_SPDL_BUILD_STUB = _env("SPDL_BUILD_STUB")


def _get_ext_modules():
Expand Down

0 comments on commit b74e902

Please sign in to comment.