Use latest stable python3 in conda create (#78)

This commit is contained in:
Kasper Primdal Lauritzen 2017-07-02 20:15:16 +02:00 committed by Peter Bull
parent dc14659408
commit 2bafb83110
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ create_environment:
ifeq (True,$(HAS_CONDA))
@echo ">>> Detected conda, creating conda environment."
ifeq (3,$(findstring 3,$(PYTHON_INTERPRETER)))
conda create --name $(PROJECT_NAME) python=3.5
conda create --name $(PROJECT_NAME) python=3
else
conda create --name $(PROJECT_NAME) python=2.7
endif