mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
dbe9f85c7d
* Drop unittest2 requirement * Use set literals * Use dict/set comprehension * Use str.format() automatic numbering
13 lines
429 B
Python
13 lines
429 B
Python
from fetch import fetch
|
|
import os
|
|
|
|
if __name__ == '__main__':
|
|
for version in ['2.7.10', '3.2.5', '3.3.5', '3.4.3']:
|
|
for platform in ['', '.amd64']:
|
|
for extension in ['', '.asc']:
|
|
fetch('https://www.python.org/ftp/python/%s/python-%s%s.msi%s'
|
|
% (version, version, platform, extension))
|
|
|
|
# find pip, if it's not in the path!
|
|
os.system('pip install virtualenv')
|