Cnes-pylint-extension

Latest version: v7.0.0

Safety actively analyzes 638346 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 2

3.0.0

This version of CNES Checker is compatible with pylint 1.7.4. and 1.9.1.

Install with pip
~~~
python2 -m pip install --index-url file://$1 setuptools-scm
python2 -m pip install --index-url file://$1 pytest-runner
python2 -m pip install --index-url file://$1 pylint
pylint --version
~~~

Install with setup-py.bash
Pylint and its dependencies in their order of installation
~~~
packages=(setuptools_scm-3.1.0
pytest-runner-4.2
futures-3.2.0
enum34-1.1.6
wrapt-1.10.11
six-1.11.0
lazy-object-proxy-1.3.1
singledispatch-3.4.0.3
backports.functools_lru_cache-1.5
configparser-3.5.0
mccabe-0.6.1
isort-4.3.4
astroid-1.6.5
pylint-1.9.1
)
~~~

Extract pylint and its dependencies in a temporary directory
~~~
mkdir -p /tmp/pylint-packages
cd /tmp/pylint-packages
for package in $1/*; do
tar -xf $package
done
~~~

Install all packages in the correct order
~~~
for package in ${packages[*]}; do
cd $package
python2 setup.py install
cd ..
done
~~~

Check that Pylint is correctly installed
~~~
pylint --version
~~~

2.0

Cnes Pylint Extension V2.0 compatible with pylint 1.6.5.

1.5

1.0

CNES Pylint Extension V1.0 contains specific checkers to Pylint V 1.5.

Dependencies in their order of installation
* colorama-0.3.3
* lazy-object-proxy-1.2.1
* six-1.9.0
* wrapt-1.10.5
* astroid 1.4.1
* pylint 1.5

Install with setup-py.bash
Install all packages in the correct order
~~~
for package in ${packages[*]}; do
cd $package
python2 setup.py install
cd ..
done
~~~

Check that Pylint is correctly installed
~~~
pylint --version
~~~

Page 2 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.