Skip to content

Commit

Permalink
Merge pull request #2716 from matthewturk/conda_env_forge
Browse files Browse the repository at this point in the history
Allow in_conda_env to look for conda-forge
  • Loading branch information
neutrinoceros committed Jul 26, 2020
2 parents 0755d01 + 9645cb0 commit 9138a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setupext.py
Expand Up @@ -168,7 +168,7 @@ def check_for_pyembree(std_libs):


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():
Expand Down

0 comments on commit 9138a0a

Please sign in to comment.