add pytz to the list of lib to install in virtualenv
authorymh <ymh.work@gmail.com>
Sat, 09 Jun 2012 01:57:57 +0200
changeset 661 19eb49289005
parent 660 d9f2a953bea5
child 662 73b94f485ed2
add pytz to the list of lib to install in virtualenv
virtualenv/res/lib/lib_create_env.py
virtualenv/res/src/pytz.tar.bz2
virtualenv/web/res/res_create_env.py
virtualenv/web/res/srvr_requirements.txt
--- 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':
Binary file virtualenv/res/src/pytz.tar.bz2 has changed
--- 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),
--- 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