ianb / virtualenv (http://virtualenv.openplans.org/)

virtualenv makes virtual environments.

Clone this repository (size: 8.2 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/ianb/virtualenv/
commit 281: 1ce13f07261d
parent 280: f0220a3d4f00
branch: trunk
add support for 2.7alpha (untested) fixes #16
Philip Jenvey / pjenvey
2 months ago

Changed (Δ0 bytes):

raw changeset »

virtualenv.py (1 lines added, 1 lines removed)

Up to file-list virtualenv.py:

@@ -37,7 +37,7 @@ REQUIRED_MODULES = ['os', 'posix', 'posi
37
37
                    're', 'sre', 'sre_parse', 'sre_constants', 'sre_compile',
38
38
                    'lib-dynload', 'config', 'zlib']
39
39
40
if sys.version_info[:2] == (2, 6):
40
if sys.version_info[:2] >= (2, 6):
41
41
    REQUIRED_MODULES.extend(['warnings', 'linecache', '_abcoll', 'abc'])
42
42
if sys.version_info[:2] <= (2, 3):
43
43
    REQUIRED_MODULES.extend(['sets', '__future__'])