summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pylint
Commit message (Collapse)AuthorAgeFilesLines
* python3-pylint: Upgrade 3.3.4 -> 3.3.6Leon Anavi2025-03-201-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.3.6: - Fix a false positive for used-before-assignment when an inner function's return type annotation is a class defined at module scope. - Fix false positives for use-implicit-booleaness-not-comparison, use-implicit-booleaness-not-comparison-to-string and use-implicit-booleaness-not-comparison-to-zero when chained comparisons are checked. - Fix a false positive for invalid-getnewargs-ex-returned when the tuple or dict has been assigned to a name. - Remove getopt and optparse from the list of deprecated modules. - Fixed conditional import x.y causing false positive possibly-used-before-assignment. - Fix a crash when something besides a class is found in an except handler. - Fixed raising invalid-name when using camelCase for private methods with two leading underscores. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: Upgrade to 3.3.1 releaseKhem Raj2024-10-281-28/+26
| | | | | | brings python 3.13 support Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: Fix ptest failuresDan McGregor2024-03-131-0/+44
| | | | | | | | Due to the way we install ptests, some imports switch from first party to third party. Update test expectations Signed-off-by: Dan McGregor <dan.mcgregor@vecima.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: switch to pytest --automakeTim Orling2024-02-161-1/+1
| | | | | | | | | * Also replace ${PYTHON_PN} with python3 * Sort all REDEPENDS alphabetically * Drop trailing whitespace Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: Ignore failing ptestsKhem Raj2024-01-081-1/+1
| | | | | | | | | | regression_distutil_import_error_73 seems to fail starting 3.0.3 perhaps due to dependency upgrade e.g. astroid or some such. Remove it from run for now. Match the run command to whats in github actions. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: Upgrade to 3.0.0Khem Raj2023-10-042-79/+0
| | | | | | Package additional hidden files for ptests (test_primer.py) Signed-off-by: Khem Raj <raj.khem@gmail.com>
* *.patch: add Upstream-Status to all patchesMartin Jansa2023-06-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: omit failing pickle testTrevor Gamblin2023-05-151-0/+53
| | | | | | | | | There is one test in the pylint suite involving pickling non-pickleable plugins that fails on target (but not host). Disable this test for ptest runs. Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: Fix missing deps for ptestsKhem Raj2023-05-121-1/+1
| | | | | | Disable benchmarks in ptest run Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: add ptestTrevor Gamblin2023-05-122-8/+5
| | | | | Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylint: upgrade 2.14.5 -> 2.17.3Trevor Gamblin2023-05-121-0/+30
Change pylint to inherit python_setuptools_build_meta instead of setuptools3. Also add a patch to remove hard-coded version depdendencies for wheel and setuptools from the pyproject.toml, otherwise the following error occurs during do_compile: | ERROR Missing dependencies: | wheel~=0.37.1 | setuptools~=62.6 Release note links: 2.17.x: https://pylint.readthedocs.io/en/latest/whatsnew/2/2.17/index.html 2.16.x: https://pylint.readthedocs.io/en/latest/whatsnew/2/2.16/index.html 2.15.x: https://pylint.readthedocs.io/en/latest/whatsnew/2/2.15/index.html 2.14.x: https://pylint.readthedocs.io/en/latest/whatsnew/2/2.14/index.html Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>