# HG changeset patch # User ymh # Date 1339199877 -7200 # Node ID 19eb4928900579504c6433a99d21c93ac626199d # Parent d9f2a953bea5a168e419fbb3ff3c0890ab72ee89 add pytz to the list of lib to install in virtualenv diff -r d9f2a953bea5 -r 19eb49289005 virtualenv/res/lib/lib_create_env.py --- a/virtualenv/res/lib/lib_create_env.py Fri Jun 08 19:10:56 2012 +0200 +++ b/virtualenv/res/lib/lib_create_env.py Sat Jun 09 01:57:57 2012 +0200 @@ -36,6 +36,7 @@ 'SSH': {'setup': 'ssh', 'url':'http://pypi.python.org/packages/source/s/ssh/ssh-1.7.14.tar.gz#md5=4cdd0549ef4699bd67b96264d3b21427', 'local':'ssh-1.7.14.tar.gz'}, 'FABRIC': {'setup': 'fabric', 'url':'https://github.com/fabric/fabric/tarball/1.4.2', 'local':'fabric-1.4.2.tar.gz'}, 'MERCURIAL': {'setup': 'mercurial', 'url':'http://mercurial.selenic.com/release/mercurial-2.2.2.tar.gz', 'local':'mercurial-2.2.2.tar.gz'}, + 'PYTZ': {'setup':'pytz', 'url':'http://pypi.python.org/packages/source/p/pytz/pytz-2012c.tar.bz2', 'local':'pytz.tar.bz2'}, } if system_str == 'Windows': diff -r d9f2a953bea5 -r 19eb49289005 virtualenv/res/src/pytz.tar.bz2 Binary file virtualenv/res/src/pytz.tar.bz2 has changed diff -r d9f2a953bea5 -r 19eb49289005 virtualenv/web/res/res_create_env.py --- a/virtualenv/web/res/res_create_env.py Fri Jun 08 19:10:56 2012 +0200 +++ b/virtualenv/web/res/res_create_env.py Sat Jun 09 01:57:57 2012 +0200 @@ -22,6 +22,7 @@ ]) INSTALLS.extend([ #(key,method, option_str, dict_extra_env) + ('PYTZ', 'pip', None, None), ('SOUTH', 'pip', None, None), ('PIL', 'easy_install', None, None), ('DJANGO','pip', None, None), diff -r d9f2a953bea5 -r 19eb49289005 virtualenv/web/res/srvr_requirements.txt --- a/virtualenv/web/res/srvr_requirements.txt Fri Jun 08 19:10:56 2012 +0200 +++ b/virtualenv/web/res/srvr_requirements.txt Sat Jun 09 01:57:57 2012 +0200 @@ -1,2 +1,3 @@ python-memcached uWSGI +pytz \ No newline at end of file