From 9645cb0dabcb36dabf493ce243416648e258e258 Mon Sep 17 00:00:00 2001 From: Matthew Turk Date: Thu, 2 Jul 2020 09:31:13 -0500 Subject: [PATCH] Allow in_conda_env to look for conda-forge --- setupext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupext.py b/setupext.py index 92c456babe0..4d3efa3ccb0 100644 --- a/setupext.py +++ b/setupext.py @@ -132,7 +132,7 @@ def check_for_pyembree(): return os.path.dirname(fn) def in_conda_env(): - return any(s in sys.version for s in ("Anaconda", "Continuum")) + return any(s in sys.version for s in ("Anaconda", "Continuum", "conda-forge")) def read_embree_location(): '''