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 894d109 commit e0e18bbCopy full SHA for e0e18bb
setup.py
@@ -21,9 +21,10 @@
21
is_rtd = "READTHEDOCS" in os.environ
22
is_appveyor = "APPVEYOR" in os.environ
23
is_azure = "CONDA_PY" in os.environ
24
+is_conda = "CONDA_PREFIX_1" in os.environ
25
-# Only include the installation dependencies if we are not running on RTD or AppVeyor
26
-if not is_rtd and not is_appveyor and not is_azure:
+# Only include the installation dependencies if we are not running on RTD or AppVeyor or in a conda env
27
+if not is_rtd and not is_appveyor and not is_azure and not is_conda:
28
reqs = [
29
"cadquery-ocp>=7.6,<7.7",
30
"ezdxf",
0 commit comments