Hello community, here is the log from the commit of package python-virtualenv for openSUSE:Factory checked in at Mon Jul 25 17:30:02 CEST 2011.
-------- --- python-virtualenv/python-virtualenv.changes 2011-07-19 15:29:34.000000000 +0200 +++ python-virtualenv/python-virtualenv.changes 2011-07-22 01:39:24.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Jul 21 19:00:42 UTC 2011 - [email protected] + +- Update to 1.6.4: + * Restored ability to run on Python 2.4, too. + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- virtualenv-1.6.3.tar.gz New: ---- virtualenv-1.6.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-virtualenv.spec ++++++ --- /var/tmp/diff_new_pack.xRcVmD/_old 2011-07-25 17:29:22.000000000 +0200 +++ /var/tmp/diff_new_pack.xRcVmD/_new 2011-07-25 17:29:22.000000000 +0200 @@ -18,13 +18,13 @@ Name: python-virtualenv -Version: 1.6.3 -Release: 2 +Version: 1.6.4 +Release: 1 Url: http://www.virtualenv.org/ Summary: Virtual Python Environment builder License: MIT Group: Development/Languages/Python -Source: virtualenv-%{version}.tar.gz +Source: virtualenv-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel Requires: python-distribute ++++++ virtualenv-1.6.3.tar.gz -> virtualenv-1.6.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.6.3/PKG-INFO new/virtualenv-1.6.4/PKG-INFO --- old/virtualenv-1.6.3/PKG-INFO 2011-07-16 18:33:17.000000000 +0200 +++ new/virtualenv-1.6.4/PKG-INFO 2011-07-21 18:52:15.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: virtualenv -Version: 1.6.3 +Version: 1.6.4 Summary: Virtual Python Environment builder Home-page: http://www.virtualenv.org Author: Jannis Leidel, Carl Meyer and Brian Rosner @@ -424,6 +424,11 @@ Beta release mid-July 2011, final release early August. + 1.6.4 (2011-07-21) + ~~~~~~~~~~~~~~~~~~ + + * Restored ability to run on Python 2.4, too. + 1.6.3 (2011-07-16) ~~~~~~~~~~~~~~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.6.3/docs/news.txt new/virtualenv-1.6.4/docs/news.txt --- old/virtualenv-1.6.3/docs/news.txt 2011-07-16 18:31:43.000000000 +0200 +++ new/virtualenv-1.6.4/docs/news.txt 2011-07-21 18:52:01.000000000 +0200 @@ -6,6 +6,11 @@ Beta release mid-July 2011, final release early August. +1.6.4 (2011-07-21) +~~~~~~~~~~~~~~~~~~ + +* Restored ability to run on Python 2.4, too. + 1.6.3 (2011-07-16) ~~~~~~~~~~~~~~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.6.3/setup.py new/virtualenv-1.6.4/setup.py --- old/virtualenv-1.6.3/setup.py 2011-07-16 18:32:34.000000000 +0200 +++ new/virtualenv-1.6.4/setup.py 2011-07-21 18:52:01.000000000 +0200 @@ -26,7 +26,7 @@ setup(name='virtualenv', # If you change the version here, change it in virtualenv.py and # docs/conf.py as well - version="1.6.3", + version="1.6.4", description="Virtual Python Environment builder", long_description=long_description, classifiers=[ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.6.3/virtualenv.egg-info/PKG-INFO new/virtualenv-1.6.4/virtualenv.egg-info/PKG-INFO --- old/virtualenv-1.6.3/virtualenv.egg-info/PKG-INFO 2011-07-16 18:33:16.000000000 +0200 +++ new/virtualenv-1.6.4/virtualenv.egg-info/PKG-INFO 2011-07-21 18:52:15.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: virtualenv -Version: 1.6.3 +Version: 1.6.4 Summary: Virtual Python Environment builder Home-page: http://www.virtualenv.org Author: Jannis Leidel, Carl Meyer and Brian Rosner @@ -424,6 +424,11 @@ Beta release mid-July 2011, final release early August. + 1.6.4 (2011-07-21) + ~~~~~~~~~~~~~~~~~~ + + * Restored ability to run on Python 2.4, too. + 1.6.3 (2011-07-16) ~~~~~~~~~~~~~~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.6.3/virtualenv.py new/virtualenv-1.6.4/virtualenv.py --- old/virtualenv-1.6.3/virtualenv.py 2011-07-16 18:32:46.000000000 +0200 +++ new/virtualenv-1.6.4/virtualenv.py 2011-07-21 18:52:01.000000000 +0200 @@ -4,7 +4,7 @@ # If you change the version here, change it in setup.py # and docs/conf.py as well. -virtualenv_version = "1.6.3" +virtualenv_version = "1.6.4" import base64 import sys @@ -487,16 +487,17 @@ sys.path = sys.path[1:] try: - # check if the global Python has distribute installed or plain - # setuptools - import pkg_resources - if not hasattr(pkg_resources, '_distribute'): - location = os.path.dirname(pkg_resources.__file__) - logger.notify("A globally installed setuptools was found (in %s)" % location) - logger.notify("Use the --no-site-packages option to use distribute in " - "the virtualenv.") - except ImportError: - pass + try: + # check if the global Python has distribute installed or plain + # setuptools + import pkg_resources + if not hasattr(pkg_resources, '_distribute'): + location = os.path.dirname(pkg_resources.__file__) + logger.notify("A globally installed setuptools was found (in %s)" % location) + logger.notify("Use the --no-site-packages option to use distribute in " + "the virtualenv.") + except ImportError: + pass finally: sys.path = _prev_sys_path ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
