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.
2 parents 1d902af + 823eadf commit c8a045cCopy full SHA for c8a045c
setup.py
@@ -13,11 +13,11 @@
13
conda_prefix = os.environ.get("CONDA_PREFIX", "").strip('"')
14
15
if conda_prefix and os.path.exists(os.path.join(conda_prefix, "include")):
16
- includedir = os.path.join(conda_prefix, "include")
+ includedirs = os.path.join(conda_prefix, "include")
17
libdir = os.path.join(conda_prefix, "lib")
18
libname = "libscip" if platform.system() == "Windows" else "scip"
19
print(f"Detected conda environment at {conda_prefix}.")
20
- print(f"Using include path {includedir}.")
+ print(f"Using include path {includedirs}.")
21
print(f"Using library directory {libdir}.\n")
22
else:
23
# fall back to global installation
0 commit comments