Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2017-02-18 03:18:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-flake8 (Old)
 and      /work/SRC/openSUSE:Factory/.python3-flake8.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-flake8"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes    
2016-09-25 14:42:17.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes       
2017-02-18 03:18:53.942046903 +0100
@@ -1,0 +2,78 @@
+Wed Feb 15 14:39:03 UTC 2017 - aloi...@gmx.com
+
+- Update to version 3.3.0
+  * Add support for Python 3.6 (via dependencies). Note Flake8 
+    does not guarantee that all plugins will support Python 3.6.
+  * Added unique error codes for all missing PyFlakes 
+    messages. (14 new codes, see "Error / Violation Codes")
+  * Dramatically improve the performance of Flake8. (See also 
+    GitLab!156)
+  * Display the local file path instead of the temporary file 
+    path when using the git hook. (See also GitLab#244)
+  * Add methods to Report class that will be called when 
+    Flake8 starts and finishes processing a file. (See also
+    GitLab#251)
+  * Fix problem where hooks should only check *.py files. (See 
+    also GitLab#268)
+  * Fix handling of SyntaxErrors that do not include physical
+    line information. (See also GitLab#279)
+  * Update upper bound on PyFlakes to allow for PyFlakes 
+    1.5.0.  (See also GitLab#290)
+  * Update setuptools integration to less eagerly deduplicate 
+    packages. (See also GitLab#295)
+  * Force flake8 --version to be repeatable between 
+    invocations. (See also GitLab#297)
+
+-------------------------------------------------------------------
+Tue Nov 15 03:17:37 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * removed both patches (allow_pyflakes_1_3_0.patch, 
move_pytest_options_to_pytest_ini.patch)
+    both included upstream
+
+- update to version 3.2.0:
+  * Allow for pycodestyle 2.2.0 which fixes a bug in E305 (See also
+    GitLab#256)
+
+- changes from version 3.1.1:
+  * Do not attempt to install/distribute a man file with the Python
+    package; leave this for others to do. (See also GitLab#254)
+  * Fix packaging bug where wheel version constraints specified in
+    setup.cfg did not match the constraints in setup.py. (See also
+    GitLab#255)
+
+- changes from version 3.1.0:
+  * Add --bug-report flag to make issue reporters' lives easier.
+  * Collect configuration files from the current directory when using
+    our Git hook. (See also GitLab#210, GitLab#218, GitLab#223)
+  * Avoid unhandled exceptions when dealing with SyntaxErrors. (See
+    also GitLab#214, GitLab#238)
+  * Exit early if the value for --diff is empty. (See also GitLab#226)
+  * Handle empty --stdin-display-name values. (See also GitLab#235)
+  * Properly report the column number of Syntax Errors. We were
+    assuming that all reports of column numbers were 0-indexed,
+    however, SyntaxErrors report the column number as 1-indexed. This
+    caused us to report a column number that was 1 past the actual
+    position. Further, when combined with SyntaxErrors that occur at a
+    newline, this caused the position to be visually off by two. (See
+    also GitLab#237)
+  * Fix the behaviour of --enable-extenstions. Previously, items
+    specified here were still ignored due to the fact that the
+    off-by-default extension codes were being left in the ignore
+    list. (See also GitLab#239)
+  * Fix problems around --select and --ignore behaviour that prevented
+    codes that were neither explicitly selected nor explicitly ignored
+    from being reported. (See also GitLab#242)
+  * Truly be quiet when the user specifies -q one or more
+    times. Previously, we were showing the if the user specified -q
+    and --show-source. We have fixed this bug. (See also GitLab#245)
+  * Add new File Processor attribute, previous_unindented_logical_line
+    to accomodate pycodestyle 2.1.0. (See also GitLab#246)
+  * When something goes wrong, exit non-zero. (See also GitLab#248,
+    GitLab#209)
+  * Add --tee as an option to allow use of --output-file and printing
+    to standard out.
+  * Allow the git plugin to actually be lazy when collecting files.
+  * Allow for pycodestyle 2.1 series and pyflakes 1.3 series.
+
+-------------------------------------------------------------------

Old:
----
  allow_pyflakes_1_3_0.patch
  flake8-3.0.4.tar.gz
  move_pytest_options_to_pytest_ini.patch

New:
----
  flake8-3.3.0.tar.gz

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

Other differences:
------------------
++++++ python3-flake8.spec ++++++
--- /var/tmp/diff_new_pack.xgHic5/_old  2017-02-18 03:18:54.481970644 +0100
+++ /var/tmp/diff_new_pack.xgHic5/_new  2017-02-18 03:18:54.481970644 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-flake8
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,27 +17,23 @@
 
 
 Name:           python3-flake8
-Version:        3.0.4
+Version:        3.3.0
 Release:        0
 Summary:        Modular source code checker: pep8, pyflakes and co
 License:        MIT
 Group:          Development/Languages/Python
 Url:            https://gitlab.com/pycqa/flake8
 Source:         
https://files.pythonhosted.org/packages/source/f/flake8/flake8-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM move_pytest_options_to_pytest_ini.patch -- Test suite 
fixes -- https://gitlab.com/pycqa/flake8/merge_requests/123/ 
-Patch0:         move_pytest_options_to_pytest_ini.patch
-# PATCH-FIX-UPSTREAM allow_pyflakes_1_3_0.patch -- Allow pyflakes 1.3.0 -- 
https://gitlab.com/pycqa/flake8/issues/220
-Patch1:         allow_pyflakes_1_3_0.patch
 BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
-BuildRequires:  python3-mccabe >= 0.2
+BuildRequires:  python3-mccabe >= 0.6.0
 BuildRequires:  python3-pycodestyle >= 1.4.3
 BuildRequires:  python3-pyflakes >= 0.6.1
+BuildRequires:  python3-setuptools
 # Test requirements:
 BuildRequires:  python3-mock
 BuildRequires:  python3-pytest
 BuildRequires:  python3-pytest-runner
-Requires:       python3-mccabe >= 0.2
+Requires:       python3-mccabe >= 0.6.0
 Requires:       python3-pycodestyle >= 1.4.3
 Requires:       python3-pyflakes >= 0.6.1
 Requires(post): update-alternatives
@@ -56,8 +52,6 @@
 
 %prep
 %setup -q -n flake8-%{version}
-%patch0 -p1
-%patch1 -p1
 
 %build
 python3 setup.py build

++++++ flake8-3.0.4.tar.gz -> flake8-3.3.0.tar.gz ++++++
++++ 52873 lines of diff (skipped)


Reply via email to