Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-zc.buildout for 
openSUSE:Factory checked in at 2022-09-18 17:32:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-zc.buildout (Old)
 and      /work/SRC/openSUSE:Factory/.python-zc.buildout.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-zc.buildout"

Sun Sep 18 17:32:20 2022 rev:18 rq:1004428 version:2.13.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-zc.buildout/python-zc.buildout.changes    
2021-12-05 22:46:28.053572461 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zc.buildout.new.2083/python-zc.buildout.changes
  2022-09-18 17:32:22.045796268 +0200
@@ -1,0 +2,6 @@
+Fri Sep 16 23:22:55 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com>
+
+- update to version 2.13.7: 
+  * Support python37, python38 and python39 in conditional section expressions.
+
+-------------------------------------------------------------------

Old:
----
  zc.buildout-2.13.6.tar.gz

New:
----
  zc.buildout-2.13.7.tar.gz

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

Other differences:
------------------
++++++ python-zc.buildout.spec ++++++
--- /var/tmp/diff_new_pack.jMyXDm/_old  2022-09-18 17:32:22.685798135 +0200
+++ /var/tmp/diff_new_pack.jMyXDm/_new  2022-09-18 17:32:22.697798170 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zc.buildout
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-zc.buildout
-Version:        2.13.6
+Version:        2.13.7
 Release:        0
 Summary:        System for managing development buildouts
 License:        ZPL-2.1

++++++ zc.buildout-2.13.6.tar.gz -> zc.buildout-2.13.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.13.6/CHANGES.rst 
new/zc.buildout-2.13.7/CHANGES.rst
--- old/zc.buildout-2.13.6/CHANGES.rst  2021-11-25 22:08:48.000000000 +0100
+++ new/zc.buildout-2.13.7/CHANGES.rst  2022-03-31 07:55:14.000000000 +0200
@@ -1,6 +1,12 @@
 Change History
 **************
 
+2.13.7 (2022-03-31)
+===================
+
+- Support python37, python38 and python39 in conditional section expressions.
+
+
 2.13.6 (2021-11-25)
 ===================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.13.6/PKG-INFO 
new/zc.buildout-2.13.7/PKG-INFO
--- old/zc.buildout-2.13.6/PKG-INFO     2021-11-25 22:08:49.571243300 +0100
+++ new/zc.buildout-2.13.7/PKG-INFO     2022-03-31 07:55:16.375074100 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: zc.buildout
-Version: 2.13.6
+Version: 2.13.7
 Summary: System for managing development buildouts
 Home-page: http://buildout.org
 Author: Jim Fulton
@@ -79,6 +79,12 @@
 Change History
 **************
 
+2.13.7 (2022-03-31)
+===================
+
+- Support python37, python38 and python39 in conditional section expressions.
+
+
 2.13.6 (2021-11-25)
 ===================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.13.6/setup.py 
new/zc.buildout-2.13.7/setup.py
--- old/zc.buildout-2.13.6/setup.py     2021-11-25 22:08:48.000000000 +0100
+++ new/zc.buildout-2.13.7/setup.py     2022-03-31 07:55:14.000000000 +0200
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 name = "zc.buildout"
-version = '2.13.6'
+version = '2.13.7'
 
 import os
 from setuptools import setup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.13.6/src/zc/buildout/buildout.py 
new/zc.buildout-2.13.7/src/zc/buildout/buildout.py
--- old/zc.buildout-2.13.6/src/zc/buildout/buildout.py  2021-11-25 
22:08:48.000000000 +0100
+++ new/zc.buildout-2.13.7/src/zc/buildout/buildout.py  2022-03-31 
07:55:14.000000000 +0200
@@ -1722,9 +1722,9 @@
     globals_defs.update({'python2': major_python_versions[0] == '2',
                          'python3': major_python_versions[0] == '3'})
 
-    # minor python major_python_versions as python24, python25 ... python36
+    # minor python major_python_versions as python24, python25 ... python39
     minor_python_versions = ('24', '25', '26', '27',
-                             '30', '31', '32', '33', '34', '35', '36')
+                             '30', '31', '32', '33', '34', '35', '36', '37', 
'38', '39')
     for v in minor_python_versions:
         globals_defs['python' + v] = ''.join(major_python_versions[:2]) == v
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.13.6/src/zc/buildout/configparser.test 
new/zc.buildout-2.13.7/src/zc/buildout/configparser.test
--- old/zc.buildout-2.13.6/src/zc/buildout/configparser.test    2021-11-25 
22:08:48.000000000 +0100
+++ new/zc.buildout-2.13.7/src/zc/buildout/configparser.test    2022-03-31 
07:55:14.000000000 +0200
@@ -291,7 +291,7 @@
 
   # major and minor python versions, yes even python 3.5 and 3.6 are there , 
prospectively
   # comment: this expression "is true" and not that long expression cannot 
span several lines
-  [s2: any([python2, python3, python24 , python25 , python26 , python27 , 
python30 , python31 , python32 , python33 , python34 , python35 , python36]) ]
+  [s2: any([python2, python3, python24 , python25 , python26 , python27 , 
python30 , python31 , python32 , python33 , python34 , python35 , python36, 
python37, python38,python39]) ]
   b = 1
 
   # common python interpreter types
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.13.6/src/zc.buildout.egg-info/PKG-INFO 
new/zc.buildout-2.13.7/src/zc.buildout.egg-info/PKG-INFO
--- old/zc.buildout-2.13.6/src/zc.buildout.egg-info/PKG-INFO    2021-11-25 
22:08:49.000000000 +0100
+++ new/zc.buildout-2.13.7/src/zc.buildout.egg-info/PKG-INFO    2022-03-31 
07:55:15.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: zc.buildout
-Version: 2.13.6
+Version: 2.13.7
 Summary: System for managing development buildouts
 Home-page: http://buildout.org
 Author: Jim Fulton
@@ -79,6 +79,12 @@
 Change History
 **************
 
+2.13.7 (2022-03-31)
+===================
+
+- Support python37, python38 and python39 in conditional section expressions.
+
+
 2.13.6 (2021-11-25)
 ===================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zc.buildout-2.13.6/src/zc.buildout.egg-info/entry_points.txt 
new/zc.buildout-2.13.7/src/zc.buildout.egg-info/entry_points.txt
--- old/zc.buildout-2.13.6/src/zc.buildout.egg-info/entry_points.txt    
2021-11-25 22:08:49.000000000 +0100
+++ new/zc.buildout-2.13.7/src/zc.buildout.egg-info/entry_points.txt    
2022-03-31 07:55:15.000000000 +0200
@@ -1,7 +1,5 @@
-
 [console_scripts]
 buildout = zc.buildout.buildout:main
 
 [zc.buildout]
 debug = zc.buildout.testrecipes:Debug
-

Reply via email to