Releases: MasterOdin/pylint_runner
Releases · MasterOdin/pylint_runner
v0.7.0
v0.6.0
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
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
Update __init__.py
v0.5.2
Update __init__.py
v0.5.1
Added official Python 3.6 support
v0.5.0
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
Fix missing requirements.txt bug
v0.4.0
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)