Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2018-07-13 10:22:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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"

Fri Jul 13 10:22:07 2018 rev:3 rq:622328 version:0.18

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
    2018-05-08 13:38:53.594189346 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new/python-flake8-import-order.changes
       2018-07-13 10:22:34.662543605 +0200
@@ -1,0 +2,6 @@
+Thu Jul 12 16:00:21 UTC 2018 - [email protected]
+
+- update to version 0.18:
+  * Add new Python 3.7 modules to the stdlib list, and support 3.7.
+
+-------------------------------------------------------------------

Old:
----
  flake8-import-order-0.17.1.tar.gz

New:
----
  flake8-import-order-0.18.tar.gz

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

Other differences:
------------------
++++++ python-flake8-import-order.spec ++++++
--- /var/tmp/diff_new_pack.iswbWh/_old  2018-07-13 10:22:35.086544113 +0200
+++ /var/tmp/diff_new_pack.iswbWh/_new  2018-07-13 10:22:35.090544117 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-flake8-import-order
-Version:        0.17.1
+Version:        0.18
 Release:        0
 Summary:        Flake8 plugin that checks the ordering of import statements
 License:        LGPL-3.0-only

++++++ flake8-import-order-0.17.1.tar.gz -> flake8-import-order-0.18.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17.1/CHANGELOG.rst 
new/flake8-import-order-0.18/CHANGELOG.rst
--- old/flake8-import-order-0.17.1/CHANGELOG.rst        2018-03-05 
21:42:59.000000000 +0100
+++ new/flake8-import-order-0.18/CHANGELOG.rst  2018-07-08 19:17:54.000000000 
+0200
@@ -1,3 +1,8 @@
+0.18 2018-07-08
+---------------
+
+* Add new Python 3.7 modules to the stdlib list, and support 3.7.
+
 0.17.1 2018-03-05
 -----------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17.1/PKG-INFO 
new/flake8-import-order-0.18/PKG-INFO
--- old/flake8-import-order-0.17.1/PKG-INFO     2018-03-05 21:43:53.000000000 
+0100
+++ new/flake8-import-order-0.18/PKG-INFO       2018-07-08 19:20:32.000000000 
+0200
@@ -1,12 +1,13 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.2
 Name: flake8-import-order
-Version: 0.17.1
+Version: 0.18
 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]
+Author: Alex Stapleton
+Author-email: [email protected]
+Maintainer: Phil Jones
+Maintainer-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.1/flake8_import_order/__about__.py 
new/flake8-import-order-0.18/flake8_import_order/__about__.py
--- old/flake8-import-order-0.17.1/flake8_import_order/__about__.py     
2018-03-05 21:42:59.000000000 +0100
+++ new/flake8-import-order-0.18/flake8_import_order/__about__.py       
2018-07-08 19:17:54.000000000 +0200
@@ -12,7 +12,7 @@
 )
 __uri__ = "https://github.com/PyCQA/flake8-import-order";
 
-__version__ = "0.17.1"
+__version__ = "0.18"
 
 __author__ = "Alex Stapleton"
 __email__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17.1/flake8_import_order/stdlib_list.py 
new/flake8-import-order-0.18/flake8_import_order/stdlib_list.py
--- old/flake8-import-order-0.17.1/flake8_import_order/stdlib_list.py   
2018-03-05 21:42:59.000000000 +0100
+++ new/flake8-import-order-0.18/flake8_import_order/stdlib_list.py     
2018-07-08 19:17:54.000000000 +0200
@@ -85,6 +85,7 @@
     "concurrent",
     "configparser",
     "contextlib",
+    "contextvars",
     "cookielib",
     "copy",
     "copy_reg",
@@ -93,6 +94,7 @@
     "csv",
     "ctypes",
     "curses",
+    "dataclasses",
     "datetime",
     "dbhash",
     "dbm",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17.1/flake8_import_order.egg-info/PKG-INFO 
new/flake8-import-order-0.18/flake8_import_order.egg-info/PKG-INFO
--- old/flake8-import-order-0.17.1/flake8_import_order.egg-info/PKG-INFO        
2018-03-05 21:43:53.000000000 +0100
+++ new/flake8-import-order-0.18/flake8_import_order.egg-info/PKG-INFO  
2018-07-08 19:20:32.000000000 +0200
@@ -1,12 +1,13 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.2
 Name: flake8-import-order
-Version: 0.17.1
+Version: 0.18
 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]
+Author: Alex Stapleton
+Author-email: [email protected]
+Maintainer: Phil Jones
+Maintainer-email: [email protected]
 License: LGPLv3
-Description-Content-Type: UNKNOWN
 Description: flake8-import-order
         ===================
         


Reply via email to