Next | Query returned 55 messages, browsing 41 to 50 | Previous

History of commit frequency

CVS Commit History:


   2017-11-08 09:38:54 by Thomas Klausner | Files touched by this commit (1)
Log message:
py-flake8: remove patch that does not apply cleanly
   2017-11-02 07:45:51 by Thomas Klausner | Files touched by this commit (1)
Log message:
py-flake8: remove non-existent patch from distinfo
   2017-10-23 22:44:27 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-flake8: update to 3.5.0

3.5.0:

New Dependency Information
* Allow for PyFlakes 1.6.0
* Start using new PyCodestyle checks for bare excepts and ambiguous identifier

Features
* Print out information about configuring VCS hooks
* Allow users to develop plugins “local” to a repository without using \ 
setuptools. See our documentation on local plugins for more information.

Bugs Fixed
* Catch and helpfully report UnicodeDecodeErrors when parsing configuration files.
   2017-09-10 14:34:12 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Allow newer pyflakes.
   2017-07-30 07:31:12 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
3.4.1:
Fix minor regression when users specify only a --select list with items
in the enabled/extended select list.
   2017-07-28 09:15:08 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
3.4.0:

You can view the `3.4.0 milestone`_ on GitLab for more details.

- Refine logic around ``--select`` and ``--ignore`` when combined with the
  default values for each.

- Handle spaces as an alternate separate for error codes, e.g.,
  ``--ignore 'E123 E234'``.

- Filter out empty select and ignore codes, e.g., ``--ignore E123,,E234``.

- Specify dependencies appropriately in ``setup.py``

- Fix bug in parsing ``--quiet`` and ``--verbose`` from config files.

- Remove unused import of ``os`` in the git hook template
   2017-06-09 15:57:54 by Adam Ciarcinski | Files touched by this commit (1)
Log message:
Added dependencies for Python 2.7
   2017-02-13 12:22:54 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 3.3.0

Upstream changes:
3.3.0 -- 2017-02-06
You can view the 3.3.0 milestone on GitLab for more details.

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)
   2017-01-03 14:23:05 by Jonathan Perkin | Files touched by this commit (52)
Log message:
Use "${MV} || ${TRUE}" and "${RM} -f" consistently in \ 
post-install targets.
   2016-11-28 13:45:55 by Thomas Klausner | Files touched by this commit (4)
Log message:
Updated py-flake8 to 3.2.1.

3.2.1 -- 2016-11-21
-------------------

You can view the `3.2.1 milestone`_ on GitLab for more details.

- Fix subtle bug when deciding whether to report an on-by-default's violation
  (See also `GitLab#257`_)

- Fix another bug around SyntaxErrors not being reported at the right column
  and row (See also `GitLab#259`_ and `GitLab#237`_ for a related, previously
  fixed bug)

- Fix regression from 2.x where we run checks against explicitly provided
  files, even if they don't match the filename patterns. (See also
  `GitLab#266`_)

3.2.0 -- 2016-11-14
-------------------

You can view the `3.2.0 milestone`_ on GitLab for more details.

- Allow for pycodestyle 2.2.0 which fixes a bug in E305 (See also
  `GitLab#256`_)

3.1.1 -- 2016-11-14
-------------------

You can view the `3.1.1 milestone`_ on GitLab for more details.

- 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`_)

3.1.0 -- 2016-11-14
-------------------

You can view the `3.1.0 milestone`_ on GitLab for more details.

- 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-extensions``. 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
  accommodate 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.

Next | Query returned 55 messages, browsing 41 to 50 | Previous