[Python-modules-commits] [python-flake8] branch master updated (c024322 -> de5970c)

Ondřej Nový onovy at moszumanska.debian.org
Thu Nov 17 13:48:52 UTC 2016


This is an automated email from the git hooks/post-receive script.

onovy pushed a change to branch master
in repository python-flake8.

      from  c024322   releasing package python-flake8 version 3.0.4+dfsg1-4
       new  dd5d21f   record new upstream branch created by importing python-flake8_3.2.0.orig.tar.gz
       new  c959f8a   Import python-flake8_3.2.0.orig.tar.gz
       new  ec79bfb   Remove upper constrains from upstream requirements
       new  1f18099   merge patched into master
       new  920b94a   New upstream release
       new  8419fd9   Removed dfsg rebuild of source tarball, not needed anymore
       new  375e9e4   d/control: Fixed deps for new release
       new  39566ee   d/flake8.1: Updated for new release
       new  de5970c   releasing package python-flake8 version 3.2.0-1

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTING.rst                                   |   2 +-
 MANIFEST.in                                        |   1 +
 PKG-INFO                                           |   4 +-
 README.rst                                         |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  13 +
 debian/control                                     |  10 +-
 debian/copyright                                   |   1 -
 debian/flake8.1                                    |  15 +-
 ...er-constrains-from-upstream-requirements.patch} |  14 +-
 debian/patches/0001-Removed-pytest-options.patch   |  24 --
 ...revious_unindented_logical_line-attribute.patch |  53 -----
 debian/patches/series                              |   4 +-
 debian/watch                                       |   4 +-
 docs/source/conf.py                                |   2 +-
 docs/source/index.rst                              |   1 +
 docs/source/internal/cli.rst                       |   2 +-
 docs/source/internal/contributing.rst              |   2 +-
 docs/source/internal/option_handling.rst           |   2 +-
 docs/source/manpage.rst                            | 150 ++++++++++++
 .../plugin-development/plugin-parameters.rst       |  22 +-
 docs/source/release-notes/3.0.0.rst                |  14 ++
 docs/source/release-notes/3.1.0.rst                |  80 +++++++
 docs/source/release-notes/3.1.1.rst                |  18 ++
 docs/source/release-notes/3.2.0.rst                |  13 +
 docs/source/release-notes/index.rst                |  21 ++
 docs/source/user/configuration.rst                 |   7 +-
 docs/source/user/error-codes.rst                   |   3 +
 docs/source/user/index.rst                         |   1 +
 docs/source/user/invocation.rst                    |   1 +
 docs/source/user/options.rst                       |  68 ++++++
 docs/source/user/using-hooks.rst                   |  69 ++++++
 pytest.ini                                         |   3 +
 setup.py                                           |   1 +
 src/flake8.egg-info/PKG-INFO                       |   4 +-
 src/flake8.egg-info/SOURCES.txt                    | 261 ++-------------------
 src/flake8.egg-info/requires.txt                   |   4 +-
 src/flake8/__init__.py                             |   2 +-
 src/flake8/api/legacy.py                           |   2 +-
 src/flake8/checker.py                              |  43 +++-
 src/flake8/formatting/base.py                      |   2 +-
 src/flake8/formatting/default.py                   |   8 +
 src/flake8/main/application.py                     |  10 +-
 src/flake8/main/debug.py                           |  62 +++++
 src/flake8/main/git.py                             |  26 +-
 src/flake8/main/options.py                         |  17 ++
 src/flake8/options/manager.py                      |   5 +-
 src/flake8/plugins/manager.py                      |  11 +-
 src/flake8/plugins/pyflakes.py                     |   2 +
 src/flake8/processor.py                            |  23 +-
 src/flake8/style_guide.py                          |  47 ++--
 tests/fixtures/example-code/invalid-syntax.py      |   1 +
 tests/unit/test_application.py                     |  62 +++++
 tests/unit/test_base_formatter.py                  |  18 +-
 tests/unit/test_debug.py                           |  86 +++++++
 tests/unit/test_file_checker.py                    |  25 ++
 tests/unit/test_file_processor.py                  |  12 +
 tests/unit/test_filenameonly_formatter.py          |  38 +++
 tests/unit/test_git.py                             |  29 +++
 tests/unit/test_nothing_formatter.py               |  28 +++
 tests/unit/test_plugin.py                          |  25 ++
 tests/unit/test_style_guide.py                     |  56 +++--
 tox.ini                                            | 159 +++++++++++++
 63 files changed, 1275 insertions(+), 434 deletions(-)
 rename debian/patches/{0002-Remove-upper-constrains-from-upstream-requirements.patch => 0001-Remove-upper-constrains-from-upstream-requirements.patch} (74%)
 delete mode 100644 debian/patches/0001-Removed-pytest-options.patch
 delete mode 100644 debian/patches/0003-Add-previous_unindented_logical_line-attribute.patch
 create mode 100644 docs/source/manpage.rst
 create mode 100644 docs/source/release-notes/3.1.0.rst
 create mode 100644 docs/source/release-notes/3.1.1.rst
 create mode 100644 docs/source/release-notes/3.2.0.rst
 create mode 100644 docs/source/user/using-hooks.rst
 create mode 100644 pytest.ini
 create mode 100644 src/flake8/main/debug.py
 create mode 100644 tests/fixtures/example-code/invalid-syntax.py
 create mode 100644 tests/unit/test_application.py
 create mode 100644 tests/unit/test_debug.py
 create mode 100644 tests/unit/test_file_checker.py
 create mode 100644 tests/unit/test_filenameonly_formatter.py
 create mode 100644 tests/unit/test_git.py
 create mode 100644 tests/unit/test_nothing_formatter.py
 create mode 100644 tox.ini

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-flake8.git



More information about the Python-modules-commits mailing list