File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change 19
19
reqs = []
20
20
setup_reqs = []
21
21
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 "CONDA_PY" in os .environ :
31
- is_azure = True
32
- print (os .environ )
22
+ # ReadTheDocs, AppVeyor and Azure builds will break when trying to instal pip deps in a conda env
23
+ is_rtd = "READTHEDOCS" in os .environ
24
+ is_appveyor = "APPVEYOR" in os .environ
25
+ is_azure = "CONDA_PY" in os .environ
33
26
34
27
# Only include the installation dependencies if we are not running on RTD or AppVeyor
35
28
if not is_rtd and not is_appveyor and not is_azure :
You can’t perform that action at this time.
0 commit comments