Hello community,

here is the log from the commit of package python-virtualenv for 
openSUSE:Factory checked in at 2020-03-08 22:22:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-virtualenv (Old)
 and      /work/SRC/openSUSE:Factory/.python-virtualenv.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-virtualenv"

Sun Mar  8 22:22:41 2020 rev:37 rq:782218 version:16.7.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-virtualenv/python-virtualenv.changes      
2020-02-15 22:23:03.987233364 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-virtualenv.new.26092/python-virtualenv.changes
   2020-03-08 22:22:50.156029278 +0100
@@ -1,0 +2,6 @@
+Fri Mar  6 17:34:41 UTC 2020 - Tomáš Čech <sleep_wal...@opensuse.org>
+
+- update to 16.7.10
+  * fix error printing in bailout for Python < 2.7
+
+-------------------------------------------------------------------

Old:
----
  virtualenv-16.7.9.tar.gz

New:
----
  virtualenv-16.7.10.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-virtualenv.spec ++++++
--- /var/tmp/diff_new_pack.R4E0RE/_old  2020-03-08 22:22:50.968029779 +0100
+++ /var/tmp/diff_new_pack.R4E0RE/_new  2020-03-08 22:22:50.972029782 +0100
@@ -26,7 +26,7 @@
 %bcond_with test
 %endif
 Name:           python-virtualenv%{psuffix}
-Version:        16.7.9
+Version:        16.7.10
 Release:        0
 Summary:        Virtual Python Environment builder
 License:        MIT

++++++ virtualenv-16.7.9.tar.gz -> virtualenv-16.7.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/virtualenv-16.7.9/PKG-INFO 
new/virtualenv-16.7.10/PKG-INFO
--- old/virtualenv-16.7.9/PKG-INFO      2019-12-15 20:36:38.795713200 +0100
+++ new/virtualenv-16.7.10/PKG-INFO     2020-02-24 19:18:10.380047000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: virtualenv
-Version: 16.7.9
+Version: 16.7.10
 Summary: Virtual Python Environment builder
 Home-page: https://virtualenv.pypa.io/
 Author: Ian Bicking
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/virtualenv-16.7.9/docs/changes.rst 
new/virtualenv-16.7.10/docs/changes.rst
--- old/virtualenv-16.7.9/docs/changes.rst      2019-12-15 20:36:20.000000000 
+0100
+++ new/virtualenv-16.7.10/docs/changes.rst     2020-02-24 19:17:34.000000000 
+0100
@@ -5,6 +5,15 @@
 
 .. towncrier release notes start
 
+v16.7.10 (2020-02-24)
+---------------------
+
+Bugfixes
+^^^^^^^^
+
+- fix error printing in bailout for Python < 2.7 - by ``AdamWill` and 
``hroncok`` (`#1651 <https://github.com/pypa/virtualenv/issues/1651>`_)
+
+
 v16.7.9 (2019-12-15)
 --------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/virtualenv-16.7.9/virtualenv.egg-info/PKG-INFO 
new/virtualenv-16.7.10/virtualenv.egg-info/PKG-INFO
--- old/virtualenv-16.7.9/virtualenv.egg-info/PKG-INFO  2019-12-15 
20:36:38.000000000 +0100
+++ new/virtualenv-16.7.10/virtualenv.egg-info/PKG-INFO 2020-02-24 
19:18:09.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: virtualenv
-Version: 16.7.9
+Version: 16.7.10
 Summary: Virtual Python Environment builder
 Home-page: https://virtualenv.pypa.io/
 Author: Ian Bicking
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/virtualenv-16.7.9/virtualenv.egg-info/SOURCES.txt 
new/virtualenv-16.7.10/virtualenv.egg-info/SOURCES.txt
--- old/virtualenv-16.7.9/virtualenv.egg-info/SOURCES.txt       2019-12-15 
20:36:38.000000000 +0100
+++ new/virtualenv-16.7.10/virtualenv.egg-info/SOURCES.txt      2020-02-24 
19:18:10.000000000 +0100
@@ -7,6 +7,7 @@
 setup.py
 tox.ini
 virtualenv.py
+docs/_draft.rst
 docs/changes.rst
 docs/conf.py
 docs/development.rst
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/virtualenv-16.7.9/virtualenv.py 
new/virtualenv-16.7.10/virtualenv.py
--- old/virtualenv-16.7.9/virtualenv.py 2019-12-15 20:36:21.000000000 +0100
+++ new/virtualenv-16.7.10/virtualenv.py        2020-02-24 19:17:06.000000000 
+0100
@@ -46,11 +46,10 @@
     # noinspection PyPep8Naming
     import configparser as ConfigParser
 
-__version__ = "16.7.9"
+__version__ = "16.7.10"
 virtualenv_version = __version__  # legacy
 DEBUG = os.environ.get("_VIRTUALENV_DEBUG", None) == "1"
 if sys.version_info < (2, 7):
-    print("ERROR: {}".format(sys.exc_info()[1]))
     print("ERROR: this script requires Python 2.7 or greater.")
     sys.exit(101)
 


Reply via email to