- Compatible for Flake8 from version
flake8>=4
. (#4)
- Pin to flake8<6 as it's incompatible. (#2)
- Remove reference to py.builtin in tests. (#2)
- Disabled the 'enabler' plugin when running tests. (#2)
- Declare minimum flake8 as v5. (#1)
- Adopted jaraco/skeleton for packaging.
- Fixed compatibility with flake8 v5. Now requires flake8 v5 or later.
- More cleanup in the README.
- Revived project and relocated to coherent-oss.
- Refreshed project metadata.
- Update classifiers to indicate older versions are no longer supported
- No longer use deprecated pytest constructs
- Bump requirements to more accurately indicate what is currently needed
- Drop Python 2 support and dependency on py; from @erikkemperman
- Drop support for Python 3.5, 3.6
- Stop testing on Python versions prior to 3.7
- Add a flake8-max-doc-length option; from @rodrigomologni
- Fix some minor typos; from @kianmeng
- Implement collect() for Flake8Item; from @thomascobb
- Document skipping behavior in README; from @jpyams
- Fix compatibility with flake8 >= 3.8, from @marc
- Fix deprecation warning; from @jonasundderwolf
- Support flake8 3.7+ by checking existence of "app.make_notifier"; from jirikuncar@github
- More fixes for Travis CI -- properly specify Python versions, in particular for pypy (and fix a typo)
- Don't use long deprecated functions from pytest, broke with pytest 4.1.0
- Fix typo that caused some tests to not run as expected
- Run Travis CI tests against Python 3.7, and fix some issues with current tox
- Test on Python 3.7
- Escape a regex string with r""
- Correct junit XML output for pytest 3.5.x
- Honor ignore settings in default flake8 config section; from brianbruggeman@github
- Improve junit XML output; from Struan Judd
- Do continuous integration with Travis; from alex-dr@github
- Declare compatibility with Python 3.6
- Extend options already loaded instead of replacing them; from mforbes@github
- Correct some issues preventing proper operation with flake8 3.5.0; from jezdez@github
- Register pytest marker for flake8; from alex-dr@github
- Allow running with no cacheprovider
- Modernize use of fixtures in tests
- Added new options "flake8-max-complexity", "flake8-show-source" and "flake8-statistics"
- Update for flake8 3.x
- Fix rendering of rST; from Ken Dreyer
- Really fix cache usage; had a comparison between tuple and list which always failed
- Use integrated pytest cache instead of separate pytest-cache module (which is now integrated)
- Use documented hooks for start and end of a test run
- Added ability to override maximum line length
- initial release