Hello community,
here is the log from the commit of package python3-entrypoints for
openSUSE:Factory checked in at 2016-07-15 12:54:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-entrypoints (Old)
and /work/SRC/openSUSE:Factory/.python3-entrypoints.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-entrypoints"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-entrypoints/python3-entrypoints.changes
2016-06-02 09:36:31.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python3-entrypoints.new/python3-entrypoints.changes
2016-07-15 12:54:54.000000000 +0200
@@ -1,0 +2,6 @@
+Sun Jul 10 17:21:54 UTC 2016 - [email protected]
+
+- update to version 0.2.2:
+ * Import configparser from backports on Python 2
+
+-------------------------------------------------------------------
Old:
----
0.2.1.tar.gz
New:
----
0.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-entrypoints.spec ++++++
--- /var/tmp/diff_new_pack.93T4sL/_old 2016-07-15 12:54:56.000000000 +0200
+++ /var/tmp/diff_new_pack.93T4sL/_new 2016-07-15 12:54:56.000000000 +0200
@@ -17,7 +17,7 @@
Name: python3-entrypoints
-Version: 0.2.1
+Version: 0.2.2
Release: 0
Summary: Discover and load entry points from installed packages
License: MIT
++++++ 0.2.1.tar.gz -> 0.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/entrypoints-0.2.1/doc/conf.py
new/entrypoints-0.2.2/doc/conf.py
--- old/entrypoints-0.2.1/doc/conf.py 2016-04-22 20:36:34.000000000 +0200
+++ new/entrypoints-0.2.2/doc/conf.py 2016-05-21 11:31:21.000000000 +0200
@@ -62,7 +62,7 @@
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
-release = version + '.1'
+release = version + '.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/entrypoints-0.2.1/entrypoints.py
new/entrypoints-0.2.2/entrypoints.py
--- old/entrypoints-0.2.1/entrypoints.py 2016-04-22 20:36:34.000000000
+0200
+++ new/entrypoints-0.2.2/entrypoints.py 2016-05-21 11:31:21.000000000
+0200
@@ -1,5 +1,4 @@
"""Discover and load entry points from installed packages."""
-import configparser
from contextlib import contextmanager
import glob
from importlib import import_module
@@ -11,6 +10,11 @@
import warnings
import zipfile
+if sys.version_info[0] >= 3:
+ import configparser
+else:
+ from backports import configparser
+
entry_point_pattern = re.compile(r"""
(?P<modulename>\w+(\.\w+)*)
(:(?P<objectname>\w+(\.\w+)*))?
@@ -19,7 +23,7 @@
$
""", re.VERBOSE)
-__version__ = '0.2.1'
+__version__ = '0.2.2'
class BadEntryPoint(Exception):
"""Raised when an entry point can't be parsed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/entrypoints-0.2.1/flit.ini
new/entrypoints-0.2.2/flit.ini
--- old/entrypoints-0.2.1/flit.ini 2016-04-22 20:36:34.000000000 +0200
+++ new/entrypoints-0.2.2/flit.ini 2016-05-21 11:31:21.000000000 +0200
@@ -5,4 +5,4 @@
home-page = https://github.com/takluyver/entrypoints
classifiers = License :: OSI Approved :: MIT License
requires-python = >=2.7
-requires = configparser; python_version == '2.7'
+requires = configparser (>=3.5); python_version == '2.7'