Skip to content

Commit

Permalink
Add python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mijdavis2 authored Nov 12, 2016
1 parent dcf805b commit 311e424
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,32 @@ module.exports = yeoman.Base.extend({
message : 'What minimum python version will you support?',
choices : [
{
"value": ["2","7","9"],
"name": "2.7.9"
value: ['3', '5', '2'],
name : '3.5.2'
},
{
"value": ["2","7","10"],
"name": "2.7.10"
value: ['3', '4', '5'],
name : '3.4.5'
},
{
"value": ["2","7","11"],
"name": "2.7.11"
value: ['3', '4', '3'],
name : '3.4.3'
},
{
"value": ["3","4","3"],
"name": "3.4.3"
value: ['2', '7', '11'],
name : '2.7.11'
},
{
"value": ["3","5","2"],
"name": "3.5.2"
value: ['2', '7', '10'],
name : '2.7.10'
},
{
value: ['2', '7', '9'],
name : '2.7.9'
},
{
value: ['2', '7', '8'],
name : '2.7.8'
}
]
},
Expand Down

0 comments on commit 311e424

Please sign in to comment.