commit python3-virtualenv for openSUSE:Factory
Hello community, here is the log from the commit of package python3-virtualenv for openSUSE:Factory checked in at 2014-03-31 20:44:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-virtualenv (Old) and /work/SRC/openSUSE:Factory/.python3-virtualenv.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python3-virtualenv" Changes: -------- --- /work/SRC/openSUSE:Factory/python3-virtualenv/python3-virtualenv.changes 2014-01-09 15:30:30.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python3-virtualenv.new/python3-virtualenv.changes 2014-03-31 20:44:12.000000000 +0200 @@ -1,0 +2,19 @@ +Sun Mar 30 09:13:20 UTC 2014 - toddrme2178@gmail.com + +- update to 1.11.4 + * Updated pip to 1.5.4 +- update to 1.11.3 + * Updated setuptools to 2.2 + * Updated pip to 1.5.3 + +------------------------------------------------------------------- +Tue Feb 11 09:54:08 UTC 2014 - dmueller@suse.com + +- update to 1.11.2: + * Fixed easy_install installed virtualenvs by updated pip to 1.5.2 + * Fixed an issue where pip and setuptools were not getting installed when using + the ``--system-site-packages`` flag. + * Updated setuptools to fix an issue when installed with easy_install + * Fixed an issue with Python 3.4 and sys.stdout encoding being set to ascii + +------------------------------------------------------------------- Old: ---- virtualenv-1.11.tar.gz New: ---- virtualenv-1.11.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-virtualenv.spec ++++++ --- /var/tmp/diff_new_pack.rLDXUx/_old 2014-03-31 20:44:13.000000000 +0200 +++ /var/tmp/diff_new_pack.rLDXUx/_new 2014-03-31 20:44:13.000000000 +0200 @@ -17,7 +17,7 @@ Name: python3-virtualenv -Version: 1.11 +Version: 1.11.4 Release: 0 Url: http://www.virtualenv.org/ Summary: Virtual Python Environment builder ++++++ virtualenv-1.11.tar.gz -> virtualenv-1.11.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/PKG-INFO new/virtualenv-1.11.4/PKG-INFO --- old/virtualenv-1.11/PKG-INFO 2014-01-02 14:51:41.000000000 +0100 +++ new/virtualenv-1.11.4/PKG-INFO 2014-02-21 13:19:49.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: virtualenv -Version: 1.11 +Version: 1.11.4 Summary: Virtual Python Environment builder Home-page: http://www.virtualenv.org Author: Jannis Leidel, Carl Meyer and Brian Rosner @@ -30,6 +30,35 @@ ``$ENV/bin/python`` and re-running virtualenv on the same target directory with the upgraded Python. + + 1.11.4 (2014-02-21) + ~~~~~~~~~~~~~~~~~~~ + + * Updated pip to 1.5.4 + + + 1.11.3 (2014-02-20) + ~~~~~~~~~~~~~~~~~~~ + + * Updated setuptools to 2.2 + * Updated pip to 1.5.3 + + + 1.11.2 (2014-01-26) + ~~~~~~~~~~~~~~~~~~~ + + * Fixed easy_install installed virtualenvs by updated pip to 1.5.2 + + 1.11.1 (2014-01-20) + ~~~~~~~~~~~~~~~~~~~ + + * Fixed an issue where pip and setuptools were not getting installed when using + the ``--system-site-packages`` flag. + * Updated setuptools to fix an issue when installed with easy_install + * Fixed an issue with Python 3.4 and sys.stdout encoding being set to ascii + * Upgraded pip to v1.5.1 + * Upgraded setuptools to v2.1 + 1.11 (2014-01-02) ~~~~~~~~~~~~~~~~~ @@ -41,6 +70,7 @@ extra directories to search for compatible wheels for pip and setuptools. The actual wheel selected is chosen based on version and compatibility, using the same algorithm as ``pip install setuptools``. + * Fixed #495, --always-copy was failing (#PR 511) * Upgraded pip to v1.5 * Upgraded setuptools to v1.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/docs/conf.py new/virtualenv-1.11.4/docs/conf.py --- old/virtualenv-1.11/docs/conf.py 2014-01-02 14:37:50.000000000 +0100 +++ new/virtualenv-1.11.4/docs/conf.py 2014-02-21 13:14:57.000000000 +0100 @@ -83,14 +83,13 @@ # given in html_static_path. #html_style = 'default.css' -html_theme = 'default' -if not on_rtd: - try: - import sphinx_rtd_theme - html_theme = 'sphinx_rtd_theme' - html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] - except ImportError: - pass +if os.environ.get('DOCS_LOCAL'): + import sphinx_rtd_theme + html_theme = "sphinx_rtd_theme" + html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +else: + # on RTD + html_theme = 'default' # Add any paths that contain custom static files (such as style sheets) here, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/docs/news.rst new/virtualenv-1.11.4/docs/news.rst --- old/virtualenv-1.11/docs/news.rst 2014-01-02 14:29:01.000000000 +0100 +++ new/virtualenv-1.11.4/docs/news.rst 2014-02-21 13:15:05.000000000 +0100 @@ -14,6 +14,35 @@ ``$ENV/bin/python`` and re-running virtualenv on the same target directory with the upgraded Python. + +1.11.4 (2014-02-21) +~~~~~~~~~~~~~~~~~~~ + +* Updated pip to 1.5.4 + + +1.11.3 (2014-02-20) +~~~~~~~~~~~~~~~~~~~ + +* Updated setuptools to 2.2 +* Updated pip to 1.5.3 + + +1.11.2 (2014-01-26) +~~~~~~~~~~~~~~~~~~~ + +* Fixed easy_install installed virtualenvs by updated pip to 1.5.2 + +1.11.1 (2014-01-20) +~~~~~~~~~~~~~~~~~~~ + +* Fixed an issue where pip and setuptools were not getting installed when using + the ``--system-site-packages`` flag. +* Updated setuptools to fix an issue when installed with easy_install +* Fixed an issue with Python 3.4 and sys.stdout encoding being set to ascii +* Upgraded pip to v1.5.1 +* Upgraded setuptools to v2.1 + 1.11 (2014-01-02) ~~~~~~~~~~~~~~~~~ @@ -25,6 +54,7 @@ extra directories to search for compatible wheels for pip and setuptools. The actual wheel selected is chosen based on version and compatibility, using the same algorithm as ``pip install setuptools``. +* Fixed #495, --always-copy was failing (#PR 511) * Upgraded pip to v1.5 * Upgraded setuptools to v1.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/docs/virtualenv.rst new/virtualenv-1.11.4/docs/virtualenv.rst --- old/virtualenv-1.11/docs/virtualenv.rst 2013-12-21 00:26:14.000000000 +0100 +++ new/virtualenv-1.11.4/docs/virtualenv.rst 2014-02-21 02:25:32.000000000 +0100 @@ -509,7 +509,7 @@ Contributing ------------ -Refer to the `contributing to pip`_ documentation - it applies equally to +Refer to the `pip development`_ documentation - it applies equally to virtualenv, except that virtualenv issues should filed on the `virtualenv repo`_ at GitHub. @@ -524,7 +524,7 @@ update the embedded version of that file in `virtualenv.py`; commit that and submit it as part of your patch / pull request. -.. _contributing to pip: http://www.pip-installer.org/en/latest/contributing.html +.. _pip development: http://www.pip-installer.org/en/latest/development.html .. _virtualenv repo: https://github.com/pypa/virtualenv/ Running the tests diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/setup.cfg new/virtualenv-1.11.4/setup.cfg --- old/virtualenv-1.11/setup.cfg 2014-01-02 14:51:41.000000000 +0100 +++ new/virtualenv-1.11.4/setup.cfg 2014-02-21 13:19:49.000000000 +0100 @@ -1,3 +1,6 @@ +[wheel] +universal = 1 + [egg_info] tag_build = tag_date = 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/virtualenv.egg-info/PKG-INFO new/virtualenv-1.11.4/virtualenv.egg-info/PKG-INFO --- old/virtualenv-1.11/virtualenv.egg-info/PKG-INFO 2014-01-02 14:51:41.000000000 +0100 +++ new/virtualenv-1.11.4/virtualenv.egg-info/PKG-INFO 2014-02-21 13:19:49.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: virtualenv -Version: 1.11 +Version: 1.11.4 Summary: Virtual Python Environment builder Home-page: http://www.virtualenv.org Author: Jannis Leidel, Carl Meyer and Brian Rosner @@ -30,6 +30,35 @@ ``$ENV/bin/python`` and re-running virtualenv on the same target directory with the upgraded Python. + + 1.11.4 (2014-02-21) + ~~~~~~~~~~~~~~~~~~~ + + * Updated pip to 1.5.4 + + + 1.11.3 (2014-02-20) + ~~~~~~~~~~~~~~~~~~~ + + * Updated setuptools to 2.2 + * Updated pip to 1.5.3 + + + 1.11.2 (2014-01-26) + ~~~~~~~~~~~~~~~~~~~ + + * Fixed easy_install installed virtualenvs by updated pip to 1.5.2 + + 1.11.1 (2014-01-20) + ~~~~~~~~~~~~~~~~~~~ + + * Fixed an issue where pip and setuptools were not getting installed when using + the ``--system-site-packages`` flag. + * Updated setuptools to fix an issue when installed with easy_install + * Fixed an issue with Python 3.4 and sys.stdout encoding being set to ascii + * Upgraded pip to v1.5.1 + * Upgraded setuptools to v2.1 + 1.11 (2014-01-02) ~~~~~~~~~~~~~~~~~ @@ -41,6 +70,7 @@ extra directories to search for compatible wheels for pip and setuptools. The actual wheel selected is chosen based on version and compatibility, using the same algorithm as ``pip install setuptools``. + * Fixed #495, --always-copy was failing (#PR 511) * Upgraded pip to v1.5 * Upgraded setuptools to v1.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/virtualenv.egg-info/SOURCES.txt new/virtualenv-1.11.4/virtualenv.egg-info/SOURCES.txt --- old/virtualenv-1.11/virtualenv.egg-info/SOURCES.txt 2014-01-02 14:51:41.000000000 +0100 +++ new/virtualenv-1.11.4/virtualenv.egg-info/SOURCES.txt 2014-02-21 13:19:49.000000000 +0100 @@ -2,6 +2,7 @@ LICENSE.txt MANIFEST.in README.rst +setup.cfg setup.py virtualenv.py bin/rebuild-script.py @@ -29,5 +30,5 @@ virtualenv_embedded/distutils.cfg virtualenv_embedded/site.py virtualenv_support/__init__.py -virtualenv_support/pip-1.5-py2.py3-none-any.whl -virtualenv_support/setuptools-2.0.2-py2.py3-none-any.whl \ No newline at end of file +virtualenv_support/pip-1.5.4-py2.py3-none-any.whl +virtualenv_support/setuptools-2.2-py2.py3-none-any.whl \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtualenv-1.11/virtualenv.py new/virtualenv-1.11.4/virtualenv.py --- old/virtualenv-1.11/virtualenv.py 2014-01-02 14:28:14.000000000 +0100 +++ new/virtualenv-1.11.4/virtualenv.py 2014-02-21 13:15:05.000000000 +0100 @@ -2,7 +2,7 @@ """Create a "virtual" Python installation """ -__version__ = "1.11" +__version__ = "1.11.4" virtualenv_version = __version__ # legacy import base64 @@ -286,7 +286,11 @@ #"zipfile", ]) if minver >= 4: - REQUIRED_MODULES.extend(['operator', '_collections_abc']) + REQUIRED_MODULES.extend([ + 'operator', + '_collections_abc', + '_bootlocale', + ]) if is_pypy: # these are needed to correctly display the exceptions that may happen @@ -942,7 +946,7 @@ cmd = [ py_executable, '-c', - 'import sys, pip; pip.main(["install"] + sys.argv[1:])', + 'import sys, pip; sys.exit(pip.main(["install", "--ignore-installed"] + sys.argv[1:]))', ] + project_names logger.start_progress('Installing %s...' % (', '.join(project_names))) logger.indent += 2 @@ -1246,7 +1250,7 @@ # OS X framework builds cause validation to break # https://github.com/pypa/virtualenv/issues/322 if os.environ.get('__PYVENV_LAUNCHER__'): - os.unsetenv('__PYVENV_LAUNCHER__') + del os.environ["__PYVENV_LAUNCHER__"] if re.search(r'/Python(?:-32|-64)*$', py_executable): # The name of the python executable is not quite what # we want, rename it. Files old/virtualenv-1.11/virtualenv_support/pip-1.5-py2.py3-none-any.whl and new/virtualenv-1.11.4/virtualenv_support/pip-1.5-py2.py3-none-any.whl differ Files old/virtualenv-1.11/virtualenv_support/pip-1.5.4-py2.py3-none-any.whl and new/virtualenv-1.11.4/virtualenv_support/pip-1.5.4-py2.py3-none-any.whl differ Files old/virtualenv-1.11/virtualenv_support/setuptools-2.0.2-py2.py3-none-any.whl and new/virtualenv-1.11.4/virtualenv_support/setuptools-2.0.2-py2.py3-none-any.whl differ Files old/virtualenv-1.11/virtualenv_support/setuptools-2.2-py2.py3-none-any.whl and new/virtualenv-1.11.4/virtualenv_support/setuptools-2.2-py2.py3-none-any.whl differ -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de