Cnes-pylint-extension

Latest version: v7.0.0

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

Scan your dependencies

Page 1 of 2

7.0.0

⚠️ This release add some breaking changes - Works only with pylint 3, pylint 2 is not supported anymore ⚠️
What's Changed
* Update support pylint3 by Topin2001 in https://github.com/cnescatlab/cnes-pylint-extension/pull/17
* Dev by louisjdmartin in https://github.com/cnescatlab/cnes-pylint-extension/pull/19

New Contributors
* Topin2001 made their first contribution in https://github.com/cnescatlab/cnes-pylint-extension/pull/17

**Full Changelog**: https://github.com/cnescatlab/cnes-pylint-extension/compare/v6.0.0...v7.0.0

7.0.0rc1

6.0.0

This version is compatible with Pylint 2.12 and more

You can install it with `pip install cnes-pylint-extension`

5.0.01

This version is still the cnes-pylint-extension v5.0.0, but now, it is officially published on PIP repositories

5.0.0

This version of CNES Checker is compatible with pylint 2.5.0

Dependencies in their order of installation :
* setuptools_scm-3.5.0
* setuptools 39.2.0
* pytest-runner-5.2
* wrapt-1.12.1
* six-1.14.0
* lazy-object-proxy-1.4.3
* mccabe-0.6.1
* isort-4.3.21
* typed-ast-1.4.1
* astroid-2.4.0
* pylint-2.5.0

4.0.0

This version of CNES Checker is compatible with pylint 2.1.1

Dependencies in their order of installation :
* setuptools_scm-3.1.0
* pytest-runner-4.2
* wrapt-1.10.11
* six-1.11.0
* lazy-object-proxy-1.3.1
* mccabe-0.6.1
* isort-4.3.4
* typed-ast-1.1.0
* astroid-2.0.4
* pylint-2.1.1

Install with pip
~~~
python3 -m pip install --index-url file://$1 setuptools-scm
python3 -m pip install --index-url file://$1 pytest-runner
python3 -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
wrapt-1.10.11
six-1.11.0
lazy-object-proxy-1.3.1
mccabe-0.6.1
isort-4.3.4
typed-ast-1.1.0
astroid-2.0.4
pylint-2.1.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
python3 setup.py install
cd ..
done
~~~

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

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.