Skip to content

Commit

Permalink
Allow installing Python 2.7 for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Aug 15, 2023
1 parent d5a1d20 commit d28f865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/python-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def run(version=None, arch=None):
if sys.platform != 'win32':
raise ValueError('python-install is only designed for Windows')

if version not in set(['2.6', '3.3']):
if version not in set(['2.6', '2.7', '3.3']):
raise ValueError('Invalid version: %r' % version)

if arch not in set(['x86', 'x64']):
Expand Down

0 comments on commit d28f865

Please sign in to comment.