Skip to content

Commit

Permalink
python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
haasad committed Mar 7, 2017
1 parent 9a038b3 commit 1f76df0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions brightway2_conda_installer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def create_new_brightway2_env():
env_name = input('Enter the name of your new environment: ')
if not env_name:
env_name = 'bw'
py_ver = input('Enter the python version, one of (2.7, 3.4, 3.5): ')
if not py_ver in {'2.7', '3.4', '3.5'}:
py_ver = input('Enter the python version, one of (2.7, 3.4, 3.5, 3.6): ')
if not py_ver in {'2.7', '3.4', '3.5', '3.6'}:
py_ver = '3.5'

with open(temp_yaml_file, 'w') as f:
Expand Down

0 comments on commit 1f76df0

Please sign in to comment.