Skip to content

Releases: MasterOdin/pylint_runner

v0.7.0

22 Jun 02:26
Compare
Choose a tag to compare

Breaking Changes

  • Drop support for Python 3.5 and 3.6

Bug Fixes

  • Fix running pylint_runner with pylint 3.0+

v0.6.0

04 Jun 03:16
Compare
Choose a tag to compare

Features

  • pylint_runner now only supports python 3.5+
  • pass unused arguments to pylint
  • always print out pylint version and python version line, not just under verbose mode

v0.5.4

11 Sep 18:20
7ca2bbb
Compare
Choose a tag to compare

0.5.4 (09/12/2018)

  • Fix break in function signature of pylint.lint.Run for Python 3+ (thanks cjhall1283)
  • Mark this as the last release for Python 2.7 (will be removed in 0.6.0)

v0.5.3

16 Apr 12:19
64dae35
Compare
Choose a tag to compare
Update __init__.py

v0.5.2

15 Apr 03:41
4f6488a
Compare
Choose a tag to compare
Update __init__.py

v0.5.1

27 Feb 14:26
d33ac84
Compare
Choose a tag to compare

Added official Python 3.6 support

v0.5.0

25 Apr 20:52
Compare
Choose a tag to compare

Added python specific entry point for pylint_runner to allow for cleaner usage with multiple versions of python. It will install both for the major and minor versions of python.

This means that if installed by python2.7 and then python3.5, you will have:

  • pylint_runner (using python 3.5)
  • pylint_runner2
  • pylint_runner2.7
  • pylint_runner3
  • pylint_runner 3.5

This will make it easier to use this as pylint is version specific on its AST generation.

v0.4.1

14 Apr 09:34
Compare
Choose a tag to compare

Fix missing requirements.txt bug

v0.4.0

13 Apr 19:47
Compare
Choose a tag to compare

Changes:

  • Refactored module into class to facilitate easy argument loading
  • Added verbose mode and defaulted to off
  • Added the ability to specify a pylintrc file (defaults to .pylintrc relative to calling location)