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 9c43eb5 commit 1648d28Copy full SHA for 1648d28
setup.py
@@ -39,9 +39,7 @@
39
class BuildZlibNGExt(build_ext):
40
def build_extension(self, ext):
41
# Add option to link dynamically for packaging systems such as conda.
42
- # Always link dynamically on readthedocs to simplify install.
43
- if (os.getenv("PYTHON_ZLIB_NG_LINK_DYNAMIC") is not None or
44
- os.environ.get("READTHEDOCS") is not None):
+ if os.getenv("PYTHON_ZLIB_NG_LINK_DYNAMIC") is not None:
45
# Check for zlib_ng include directories. This is useful when
46
# installing in a conda environment.
47
possible_prefixes = [sys.exec_prefix, sys.base_exec_prefix]
0 commit comments