Revisions of python-flake8

Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 1137099 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 44)
- update to 7.0.0:
  * Remove ``--include-in-doctest`` and ``--exclude-from-doctest``
    options.
  * Pyflakes has been updated to >= 3.2.0, < 3.3.0

  * Ignore unfixed warning.
- remove remove_mock_dependency.patch
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 1102807 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 43)
- Update to 6.1.0:
  * Pyflakes has been updated to >= 3.1.0, < 3.2.0 (See also #1847).
  * pycodestyle has been updated to >= 2.11.0, < 2.12.0 (See also #1848).
  * Deprecate --include-in-doctest, --exclude-from-doctest
   (See also #1747, #1768).
  * Add support for python 3.12 (See also #1832, #1849, #1850).
- Switch to pyproject macros.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 1043219 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 41)
- update to 6.0.0 (bsc#1206225):
  * https://flake8.pycqa.org/en/latest/release-notes/6.0.0.html
  * Require python >= 3.8.1 (See also #1633, #1741).
  * List available formatters in for --format option in --help (See also #223, #1624).
  * Improve multiprocessing performance (See also #1723).
  * Enable multiprocessing on non-fork platforms (See also #1723).
  * Ensure results are sorted when discovered from files (See also #1670, #1726).
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 997695 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 39)
- update to 5.0.4:
  * Remove ``indent_size_str`` (See also :pull:`1411`).
  * Remove some dead code (See also :pull:`1453`, :pull:`1540`, :pull:`1541`).
  * Missing explicitly-specified configuration is now an error (See also
  :issue:`1497`, :pull:`1498`).
  * Always read configuration files as UTF-8 (See also :issue:`1532`,
  :pull:`1533`).
  * Remove manpage from docs -- use ``help2man`` or related tools instead (See
  also :pull:`1557`).
  * Forbid invalid plugin codes (See also :issue:`325`, :pull:`1579`).
  * lots of bugfixes, see included changelog
- drop fix-mock-patch-with-python3.4.patch fix-recent-flake8-stdoutWriteHook-change.patch (obsolete/upstream)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 921252 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 35)
- Add ignore-selectable-groups-warning.patch:
  * Ignore unfixed warning.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 897850 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 34)
- update to 3.9.2:
  * Fix codes being ignored by plugins utilizing ``extend_default_ignore``
  * Fix error message for ``E111`` in ``pycodestyle``
  *  ``indent_size_str`` is deprecated, use ``str(indent_size)`` instead
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 830733 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 31)
- Add patch to fix build with pytest 6:
  * pytest6.patch
Yuchen Lin's avatar Yuchen Lin (maxlin_factory) accepted request 805760 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 28)
- Update to 3.8.1
  * Fix --output-file (regression in 3.8.0) (See also GitLab!427,
    GitLab#637)
- Update notes for 3.8.0
   * Fix logical checks which report positions out of bounds (See also
     GitLab!422, GitLab#635)
   * Fix --exclude=.* accidentally matching . and .. (See also GitLab!424,
     GitLab#632)
   * Add deprecation message for vcs hooks (See also GitLab!420, GitLab#568)
- Update notes for 3.8.0a2
   * Fix type="str" optparse options (See also GitLab!419)
- Update notes for 3.8.0a1
  New Dependency Information
  * Remove dependency on entrypoints and add dependency on importlib-metadata
    (only for python<3.8) (See also GitLab!388, GitLab#569)
  * Pyflakes has been updated to >= 2.2.0, < 2.3.0 (See also GitLab!417)
  * pycodestyle has been updated to >= 2.6.0a1, < 2.7.0 (See also GitLab!418)
  Features
  * Add --extend-exclude option to add to --exclude without overwriting (See
    also GitLab!315, GitLab#535)
  * Move argument parsing from optparse to argparse (See also GitLab!341
  * Group plugin options in --help (See also GitLab!342, GitLab#565)
  * Remove parsing of verbose from configuration files as it was not
    consistently applied (See also GitLab!360, GitLab#439)
  * Remove parsing of output_file from configuration files as it was not
    consistently applied (See also GitLab!361)
  * Resolve configuration files relative to cwd instead of common prefix of
    passed filenames. You may need to change flake8 subproject to cd subproject
    && flake8 . (See also GitLab!363)
  * Officially support python3.8 (See also GitLab!377)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 800170 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 27)
- Skip failing test_all_pyflakes_messages_have_flake8_codes_assigned test
  (gl#pycqa/flake8#633)
- Add pyflakes-version.patch to make the package work with
  the pyflakes in Factory now.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 751377 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 26)
Automatic submission by obs-autosubmit
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 717079 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 25)
- Update to 3.7.8:
  * Fix handling of Application.parse_preliminary_options_and_args when
    argv is an empty list (See also GitLab!310, GitLab#518)
  * Fix crash when a file parses but fails to tokenize (See also GitLab!314,
    GitLab#532)
  * Log the full traceback on plugin exceptions (See also GitLab!317)
  * Fix # noqa: ... comments with multi-letter codes (See also GitLab!326,
    GitLab#549)
- Rebase remove_mock_dependency.patch
Displaying revisions 1 - 20 of 44
openSUSE Build Service is sponsored by