Hello community,
here is the log from the commit of package python-flake8-import-order for
openSUSE:Factory checked in at 2018-05-08 13:38:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flake8-import-order (Old)
and /work/SRC/openSUSE:Factory/.python-flake8-import-order.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flake8-import-order"
Tue May 8 13:38:52 2018 rev:2 rq:605127 version:0.17.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2018-04-24 15:31:36.945508010 +0200
+++
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new/python-flake8-import-order.changes
2018-05-08 13:38:53.594189346 +0200
@@ -1,0 +2,7 @@
+Sun May 6 19:39:31 UTC 2018 - [email protected]
+
+- update to version 0.17.1:
+ * Rebuild of 0.17 with the latest setuptools to fix an enum34
+ dependency bug.
+
+-------------------------------------------------------------------
Old:
----
flake8-import-order-0.17.tar.gz
New:
----
flake8-import-order-0.17.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-flake8-import-order.spec ++++++
--- /var/tmp/diff_new_pack.htr37M/_old 2018-05-08 13:38:55.098135061 +0200
+++ /var/tmp/diff_new_pack.htr37M/_new 2018-05-08 13:38:55.102134916 +0200
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-flake8-import-order
-Version: 0.17
+Version: 0.17.1
Release: 0
Summary: Flake8 plugin that checks the ordering of import statements
License: LGPL-3.0-only
@@ -33,11 +33,10 @@
BuildRequires: python2-enum34
Requires: python-flake8
Requires: python-pycodestyle
+BuildArch: noarch
%ifpython2
Requires: python2-enum34
%endif
-BuildArch: noarch
-
%python_subpackages
%description
++++++ flake8-import-order-0.17.tar.gz -> flake8-import-order-0.17.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8-import-order-0.17/CHANGELOG.rst
new/flake8-import-order-0.17.1/CHANGELOG.rst
--- old/flake8-import-order-0.17/CHANGELOG.rst 2018-02-11 18:24:16.000000000
+0100
+++ new/flake8-import-order-0.17.1/CHANGELOG.rst 2018-03-05
21:42:59.000000000 +0100
@@ -1,3 +1,9 @@
+0.17.1 2018-03-05
+-----------------
+
+* Rebuild of 0.17 with the latest setuptools to fix an enum34
+ dependency bug.
+
0.17 2018-02-11
---------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8-import-order-0.17/PKG-INFO
new/flake8-import-order-0.17.1/PKG-INFO
--- old/flake8-import-order-0.17/PKG-INFO 2018-02-11 18:24:25.000000000
+0100
+++ new/flake8-import-order-0.17.1/PKG-INFO 2018-03-05 21:43:53.000000000
+0100
@@ -1,11 +1,12 @@
Metadata-Version: 1.1
Name: flake8-import-order
-Version: 0.17
+Version: 0.17.1
Summary: Flake8 and pylama plugin that checks the ordering of import
statements.
Home-page: https://github.com/PyCQA/flake8-import-order
Author: Phil Jones
Author-email: [email protected]
License: LGPLv3
+Description-Content-Type: UNKNOWN
Description: flake8-import-order
===================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/flake8-import-order-0.17/flake8_import_order/__about__.py
new/flake8-import-order-0.17.1/flake8_import_order/__about__.py
--- old/flake8-import-order-0.17/flake8_import_order/__about__.py
2018-02-11 18:24:16.000000000 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/__about__.py
2018-03-05 21:42:59.000000000 +0100
@@ -12,7 +12,7 @@
)
__uri__ = "https://github.com/PyCQA/flake8-import-order"
-__version__ = "0.17"
+__version__ = "0.17.1"
__author__ = "Alex Stapleton"
__email__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/flake8-import-order-0.17/flake8_import_order/__init__.py
new/flake8-import-order-0.17.1/flake8_import_order/__init__.py
--- old/flake8-import-order-0.17/flake8_import_order/__init__.py
2018-02-11 18:24:16.000000000 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/__init__.py
2018-03-05 21:42:59.000000000 +0100
@@ -70,7 +70,7 @@
self.application_import_names = frozenset(application_import_names)
self.application_package_names = frozenset(application_package_names)
- def visit_Import(self, node): # noqa
+ def visit_Import(self, node): # noqa: N802
if node.col_offset == 0:
modules = [alias.name for alias in node.names]
types_ = {self._classify_type(module) for module in modules}
@@ -84,7 +84,7 @@
)
self.imports.append(classified_import)
- def visit_ImportFrom(self, node): # noqa
+ def visit_ImportFrom(self, node): # noqa: N802
if node.col_offset == 0:
module = node.module or ''
if node.level > 0:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/flake8-import-order-0.17/flake8_import_order/stdlib_list.py
new/flake8-import-order-0.17.1/flake8_import_order/stdlib_list.py
--- old/flake8-import-order-0.17/flake8_import_order/stdlib_list.py
2018-02-11 18:24:16.000000000 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/stdlib_list.py
2018-03-05 21:42:59.000000000 +0100
@@ -1,4 +1,4 @@
-STDLIB_NAMES = set((
+STDLIB_NAMES = {
"AL",
"BaseHTTPServer",
"Bastion",
@@ -313,4 +313,4 @@
"zipfile",
"zipimport",
"zlib",
-))
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/flake8-import-order-0.17/flake8_import_order.egg-info/PKG-INFO
new/flake8-import-order-0.17.1/flake8_import_order.egg-info/PKG-INFO
--- old/flake8-import-order-0.17/flake8_import_order.egg-info/PKG-INFO
2018-02-11 18:24:25.000000000 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order.egg-info/PKG-INFO
2018-03-05 21:43:53.000000000 +0100
@@ -1,11 +1,12 @@
Metadata-Version: 1.1
Name: flake8-import-order
-Version: 0.17
+Version: 0.17.1
Summary: Flake8 and pylama plugin that checks the ordering of import
statements.
Home-page: https://github.com/PyCQA/flake8-import-order
Author: Phil Jones
Author-email: [email protected]
License: LGPLv3
+Description-Content-Type: UNKNOWN
Description: flake8-import-order
===================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/flake8-import-order-0.17/flake8_import_order.egg-info/requires.txt
new/flake8-import-order-0.17.1/flake8_import_order.egg-info/requires.txt
--- old/flake8-import-order-0.17/flake8_import_order.egg-info/requires.txt
2018-02-11 18:24:25.000000000 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order.egg-info/requires.txt
2018-03-05 21:43:53.000000000 +0100
@@ -1,3 +1,5 @@
-enum34 ; python_version <= '2.7'
pycodestyle
setuptools
+
+[:python_version <= "2.7"]
+enum34
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8-import-order-0.17/setup.cfg
new/flake8-import-order-0.17.1/setup.cfg
--- old/flake8-import-order-0.17/setup.cfg 2018-02-11 18:24:25.000000000
+0100
+++ new/flake8-import-order-0.17.1/setup.cfg 2018-03-05 21:43:53.000000000
+0100
@@ -16,7 +16,6 @@
show_missing = True
[egg_info]
-tag_svn_revision = 0
-tag_date = 0
tag_build =
+tag_date = 0