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 1919reqs = []
2020setup_reqs = []
2121
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
3326
3427# Only include the installation dependencies if we are not running on RTD or AppVeyor
3528if not is_rtd and not is_appveyor and not is_azure :
You can’t perform that action at this time.
0 commit comments