2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2021-05-10 07:57:50 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flake8: updated to 3.9.2
3.9.2 -- 2021-05-08
-------------------
You can view the `3.9.2 milestone`_ on GitHub for more details.
Bugs Fixed
- Fix error message for ``E111`` in ``pycodestyle`` (See also :pull:`1328`,
:issue:`1327`).
Deprecations
- ``indent_size_str`` is deprecated, use ``str(indent_size)`` instead (See
also :pull:`1328`, :issue:`1327`).
|
2021-04-16 10:52:35 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flake8: updated to 3.9.1
3.9.1:
Bugs Fixed
- Fix codes being ignored by plugins utilizing ``extend_default_ignore``
|
2021-03-15 08:22:22 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flake8: updated to 3.9.0
3.9.0 -- 2021-03-14
-------------------
You can view the `3.9.0 milestone`_ on GitLab for more details.
New Dependency Information
- Pyflakes has been updated to >= 2.3.0, < 2.4.0 (See also `GitLab!466`_)
- pycodestyle has been updated to >= 2.7.0, < 2.8.0 (See also `GitLab!467`_)
Deprecations
- Drop support for python 3.4 (See also `GitLab!457`_)
Features
- Add ``--no-show-source`` option to disable ``--show-source`` (See also
`GitLab!441`_)
Bugs Fixed
- Fix handling of ``crlf`` line endings when linting stdin (See also
`GitLab!461`_)
|
2020-10-03 08:02:18 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flake8: updated to 3.8.4
3.8.4
Bugs Fixed
- Fix multiprocessing errors on platforms without ``sem_open`` syscall.
- Fix skipping of physical checks on the last line of a file which does not
end in a newline.
|
2020-06-11 12:58:05 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flake8: updated to 3.8.3
3.8.3:
Bugs Fixed
- Also catch ``SyntaxError`` when tokenizing
- Fix ``--jobs`` default display in ``flake8 --help``
|
2020-05-23 09:43:46 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flake8: updated to 3.8.2
3.8.2:
Bugs Fixed
- Improve performance by eliminating unncessary sort
- Improve messaging of ``--jobs`` argument by utilizing ``argparse``
- Fix file configuration options to be relative to the config passed on the
command line
- Fix incorrect handling of ``--extend-exclude`` by treating its values as
files
|
2020-05-12 08:40:19 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
py-flake8: updated to 3.8.1
3.8.1:
Bugs Fixed
- Fix ``--output-file``
3.8.0:
Bugs Fixed
- Fix logical checks which report positions out of bounds
- Fix ``--exclude=.*`` accidentally matching ``.`` and ``..``
Deprecations
- Add deprecation message for vcs hooks
3.8.0a2:
Bugs Fixed
- Fix ``type="str"`` optparse options
3.8.0a1:
New Dependency Information
- Remove dependency on ``entrypoints`` and add dependency on
``importlib-metadata`` (only for ``python<3.8``)
- Pyflakes has been updated to >= 2.2.0, < 2.3.0
- pycodestyle has been updated to >= 2.6.0a1, < 2.7.0
Features
- Add ``--extend-exclude`` option to add to ``--exclude`` without overwriting
- Move argument parsing from ``optparse`` to ``argparse``
- Group plugin options in ``--help``
- Remove parsing of ``verbose`` from configuration files as it was not
consistently applied
- Remove parsing of ``output_file`` from configuration files as it was not
consistently applied
- Resolve configuration files relative to ``cwd`` instead of common prefix of
passed filenames. You may need to change ``flake8 subproject`` to
``cd subproject && flake8 .``
- Officially support python3.8
- ``--disable-noqa`` now also disables ``# flake8: noqa``
- Ensure that a missing file produces a ``E902`` error
- ``# noqa`` comments now apply to all of the lines in an explicit ``\``
continuation or in a line continued by a multi-line string
Bugs Fixed
- Fix ``--exclude=./t.py`` to only match ``t.py`` at the top level
- Fix ``--show-source`` when a file is indented with tabs
- Fix crash when ``--max-line-length`` is given a non-integer
- Prevent flip-flopping of ``indent_char`` causing extra ``E101`` errors
- Only enable multiprocessing when the method is ``fork`` fixing issues
on macos with python3.8+
- ``noqa`` is now only handled by flake8 fixing specific-noqa. Plugins
requesting this parameter will always receive ``False``
- Fix duplicate loading of plugins when invoked via ``python -m flake8``
- Fix early exit when ``--exit-zero`` and ``--diff`` are provided and the diff
is empty
- Consistently split lines when ``\f`` is present when reading from stdin
Deprecations
- ``python setup.py flake8`` (setuptools integration) is now deprecated and
will be removed in a future version
- ``type='string'`` (optparse) types are deprecated, use
``type=callable`` (argparse) instead. Support for ``type='string'`` will
be removed in a future version
- ``%default`` in plugin option help text is deprecated, use ``%(default)s``
instead. Support for ``%default`` will be removed in a future version
- optparse-style ``action='callback'`` setting for options is deprecated, use
argparse action classes instead. This will be removed in a future version
|
2020-05-03 11:59:52 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
py-flake8: allow newer pyflakes
|