Skip to content

Commit 7197eea

Browse files
committed
Ignoring SCM version reqs for Azure
1 parent d09334c commit 7197eea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,16 @@
2222
# ReadTheDocs and AppVeyor will break if we do not handle the separately
2323
is_rtd = False
2424
is_appveyor = False
25+
is_azure = False
2526
if "READTHEDOCS" in os.environ:
2627
is_rtd = os.environ["READTHEDOCS"]
2728
if "APPVEYOR" in os.environ:
2829
is_appveyor = os.environ["APPVEYOR"]
30+
if "TF_BUILD" in os.environ:
31+
is_azure = os.environ["TF_BUILD"]
2932

3033
# Only include the installation dependencies if we are not running on RTD or AppVeyor
31-
if not is_rtd and not is_appveyor:
34+
if not is_rtd and not is_appveyor and not is_azure:
3235
reqs = [
3336
"cadquery-ocp",
3437
"ezdxf",

0 commit comments

Comments
 (0)