We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3107e commit 1b21eafCopy full SHA for 1b21eaf
setup.py
@@ -43,7 +43,9 @@ def build_extension(self, ext):
43
return
44
45
# Add option to link dynamically for packaging systems such as conda.
46
- if os.getenv("PYTHON_ISAL_LINK_DYNAMIC") is not None:
+ # Always link dynamically on readthedocs to simplify install.
47
+ if (os.getenv("PYTHON_ISAL_LINK_DYNAMIC") is not None or
48
+ os.environ.get("READTHEDOCS") is not None):
49
# Check for isa-l include directories. This is useful when
50
# installing in a conda environment.
51
possible_prefixes = [sys.exec_prefix, sys.base_exec_prefix]
0 commit comments