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 d09334c commit 7197eeaCopy full SHA for 7197eea
setup.py
@@ -22,13 +22,16 @@
22
# ReadTheDocs and AppVeyor will break if we do not handle the separately
23
is_rtd = False
24
is_appveyor = False
25
+is_azure = False
26
if "READTHEDOCS" in os.environ:
27
is_rtd = os.environ["READTHEDOCS"]
28
if "APPVEYOR" in os.environ:
29
is_appveyor = os.environ["APPVEYOR"]
30
+if "TF_BUILD" in os.environ:
31
+ is_azure = os.environ["TF_BUILD"]
32
33
# Only include the installation dependencies if we are not running on RTD or AppVeyor
-if not is_rtd and not is_appveyor:
34
+if not is_rtd and not is_appveyor and not is_azure:
35
reqs = [
36
"cadquery-ocp",
37
"ezdxf",
0 commit comments