Skip to content

chore(deps): update dependency pylint to v3.3.6 - abandoned#45

Open
renovate[bot] wants to merge 31 commits intomainfrom
renovate/pylint-3.x-lockfile
Open

chore(deps): update dependency pylint to v3.3.6 - abandoned#45
renovate[bot] wants to merge 31 commits intomainfrom
renovate/pylint-3.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Sep 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pylint (changelog) 3.2.7 -> 3.3.6 age adoption passing confidence

Release Notes

pylint-dev/pylint (pylint)

v3.3.6

Compare Source

What's new in Pylint 3.3.6?

Release date: 2025-03-20

False Positives Fixed

  • Fix a false positive for used-before-assignment when an inner function's return type
    annotation is a class defined at module scope.

    Closes #​9391

v3.3.5

Compare Source

What's new in Pylint 3.3.5?

Release date: 2025-03-09

False Positives Fixed

  • 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.

    Closes #​10065

  • Fix a false positive for invalid-getnewargs-ex-returned when the tuple or dict has been assigned to a name.

    Closes #​10208

  • Remove getopt and optparse from the list of deprecated modules.

    Closes #​10211

Other Bug Fixes

  • Fixed conditional import x.y causing false positive possibly-used-before-assignment.

    Closes #​10081

  • Fix a crash when something besides a class is found in an except handler.

    Closes #​10106

  • Fixed raising invalid-name when using camelCase for private methods with two leading underscores.

    Closes #​10189

Other Changes

  • Upload release assets to PyPI via Trusted Publishing.

    Closes #​10256

v3.3.4: 3.3.4

Compare Source

Other Bug Fixes

  • Fixes "skipped files" count calculation; the previous method was displaying an arbitrary number.

    Closes #​10073

  • Fixes a crash that occurred when pylint was run in a container on a host with cgroupsv2 and restrictions on CPU usage.

    Closes #​10103

  • Relaxed the requirements for isort so pylint can benefit from isort 6.

    Closes #​10203

v3.3.3

Compare Source

What's new in Pylint 3.3.3?

Release date: 2024-12-23

False Positives Fixed

  • Fix false positives for undefined-variable for classes using Python 3.12
    generic type syntax.

    Closes #​9335

  • Fix a false positive for use-implicit-booleaness-not-len. No lint should be emitted for
    generators (len is not defined for generators).

    Refs #​10100

Other Bug Fixes

  • Fix Unable to import 'collections.abc' (import-error) on Python 3.13.1.

    Closes #​10112

v3.3.2

Compare Source

False Positives Fixed

  • Fix a false positive for potential-index-error when an indexed iterable
    contains a starred element that evaluates to more than one item.

    Closes #​10076

Other Bug Fixes

  • Fixes the issue with --source-root option not working when the source files are in a subdirectory of the source root (e.g. when using a /src layout).

    Closes #​10026

v3.3.1

Compare Source

What's new in Pylint 3.3.1?

Release date: 2024-09-24

False Positives Fixed

  • Fix regression causing some f-strings to not be inferred as strings.

    Closes #​9947

v3.3.0

Compare Source

Release date: 2024-09-20

Changes requiring user actions

  • We migrated symilar to argparse, from getopt, so the error and help output changed
    (for the better). We exit with 2 instead of sometime 1, sometime 2. The error output
    is not captured by the runner anymore. It's not possible to use a value for the
    boolean options anymore (--ignore-comments 1 should become --ignore-comments).

    Refs #​9731

New Features

  • Add new declare-non-slot error which reports when a class has a __slots__ member and a type hint on the class is not present in __slots__.

    Refs #​9499

New Checks

  • Added too-many-positional-arguments to allow distinguishing the configuration for too many
    total arguments (with keyword-only params specified after *) from the configuration
    for too many positional-or-keyword or positional-only arguments.

    As part of evaluating whether this check makes sense for your project, ensure you
    adjust the value of --max-positional-arguments.

    Closes #​9099

  • Add using-exception-groups-in-unsupported-version and
    using-generic-type-syntax-in-unsupported-version for uses of Python 3.11+ or
    3.12+ features on lower supported versions provided with --py-version.

    Closes #​9791

  • Add using-assignment-expression-in-unsupported-version for uses of := (walrus operator)
    on Python versions below 3.8 provided with --py-version.

    Closes #​9820

  • Add using-positional-only-args-in-unsupported-version for uses of positional-only args on
    Python versions below 3.8 provided with --py-version.

    Closes #​9823

  • Add unnecessary-default-type-args to the typing extension to detect the use
    of unnecessary default type args for typing.Generator and typing.AsyncGenerator.

    Refs #​9938

False Negatives Fixed

  • Fix computation of never-returning function: Never is handled in addition to NoReturn, and priority is given to the explicit --never-returning-functions option.

    Closes #​7565.

  • Fix a false negative for await-outside-async when await is inside Lambda.

    Refs #​9653

  • Fix a false negative for duplicate-argument-name by including positional-only, *args and **kwargs arguments in the check.

    Closes #​9669

  • Fix false negative for multiple-statements when multiple statements are present on else and finally lines of try.

    Refs #​9759

  • Fix false negatives when isinstance does not have exactly two arguments.
    pylint now emits a too-many-function-args or no-value-for-parameter
    appropriately for isinstance calls.

    Closes #​9847

Other Bug Fixes

  • --enable with --disable=all now produces an error, when an unknown msg code is used. Internal pylint messages are no longer affected by --disable=all.

    Closes #​9403

  • Impossible to compile regexes for paths in the configuration or argument given to pylint won't crash anymore but
    raise an argparse error and display the error message from re.compile instead.

    Closes #​9680

  • Fix a bug where a tox.ini file with pylint configuration was ignored and it exists in the current directory.

    .cfg and .ini files containing a Pylint configuration may now use a section named [pylint]. This enhancement impacts the scenario where these file types are used as defaults when they are present and have not been explicitly referred to, using the --rcfile option.

    Closes #​9727

  • Improve file discovery for directories that are not python packages.

    Closes #​9764

Other Changes

  • Remove support for launching pylint with Python 3.8.
    Code that supports Python 3.8 can still be linted with the --py-version=3.8 setting.

    Refs #​9774

  • Add support for Python 3.13.

    Refs #​9852

Internal Changes

  • All variables, classes, functions and file names containing the word 'similar', when it was,
    in fact, referring to 'symilar' (the standalone program for the duplicate-code check) were renamed
    to 'symilar'.

    Closes #​9734

  • Remove old-style classes (Python 2) code and remove check for new-style class since everything is new-style in Python 3. Updated doc for exception checker to remove reference to new style class.

    Refs #​9925


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

CFenner and others added 30 commits August 13, 2024 10:16
* add poetry

* remove requirements.txt

* add test workflow

* add lint workflow

* fix codespell

* chage python version for testing

* add authlib

* fix lockfile

* add requests

* fix pylint issues

* remove old pylint workflow
* Update release.yml

* minor

* change name
Update pyproject.toml
* Delete publish.sh

* Delete Makefile

* Delete .pylintrc

* Update pyproject.toml

* Update pyproject.toml

* Delete .flake8
* Update PyViCareGazBoiler.py

* Update test_Vitodens100W.py

* Update PyViCareGazBoiler.py
Add renovate.json

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* remove mypy config

* add mypy config to toml

* add mypy workflow

* update dependency

* remove request dependency

* remove commented deps

* add requests dependency
* change deprecated data points

* change deprecated data points

* skip testcases with outdated test data

* fix test case

* fix test case

* update test case

* fix linting issue
* update test data

* adjust test cases
Update and rename renovate.json to .github/renovate.json
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* update test data

* add hysteresis getter

* add setDomesticHotWaterHysteresis

* move to heat pump

* add test case

* update
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* update test data

* fix dependencies

* update lock file
* add Vitoconnect Opto 2 / Heatbox2 as gateway

* add AutoDetect test

* update tests

* Update PyViCareService.py remove empty lines

* Fix Pylint issue with docstring

* remove .pylintrc file
* add test and response for Vitoladens 300-C

* fix pylint error

* add new DHW cylinder temp. sensor feature

* fix pylint issue

* fix pylint issues

* update test response Vitoladens300-C_J3RA

* add deprecation hint for temperature.hotWaterStorage

* update test for Vitoladens 300-C

* fix unittest for Vitoladens 300-c
* update test data

* add hysteresis getter

* add setDomesticHotWaterHysteresis

* move to heat pump

* add test case

* update

* add switchOn switchOff temp setter

* add test cases

* add types

* fix type in setter

* add tes cases
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* Update and rename VitoairFs300E.json to VitoAirFS300E.json

* Update test_VitoairFs300E.py

* Rename VitoAirFS300E.json to VitoairFS300E.json

* Update test_VitoairFs300E.py

* ignore new data points

* fix test case

* rename

* rename
* Update Vitocal300G.json

* adjust test cases

* ignore undocumented data points
@renovate renovate Bot force-pushed the renovate/pylint-3.x-lockfile branch from 791dca5 to ea85292 Compare September 24, 2024 11:27
@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.0 chore(deps): update dependency pylint to v3.3.1 Sep 24, 2024
@renovate renovate Bot force-pushed the renovate/pylint-3.x-lockfile branch from ea85292 to 4bbca86 Compare December 1, 2024 19:08
@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.1 chore(deps): update dependency pylint to v3.3.2 Dec 1, 2024
@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.2 chore(deps): update dependency pylint to v3.3.3 Dec 24, 2024
@renovate renovate Bot force-pushed the renovate/pylint-3.x-lockfile branch from 4bbca86 to 0d62e23 Compare December 24, 2024 04:40
@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.3 chore(deps): update dependency pylint to v3.3.4 Jan 28, 2025
@renovate renovate Bot force-pushed the renovate/pylint-3.x-lockfile branch from 0d62e23 to c4bb5db Compare January 28, 2025 14:33
@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.4 chore(deps): update dependency pylint to v3.3.5 Mar 9, 2025
@renovate renovate Bot force-pushed the renovate/pylint-3.x-lockfile branch from c4bb5db to 1bdf39b Compare March 9, 2025 09:27
@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.5 chore(deps): update dependency pylint to v3.3.6 Mar 20, 2025
@renovate renovate Bot force-pushed the renovate/pylint-3.x-lockfile branch from 1bdf39b to d9cfa3a Compare March 20, 2025 12:34
@renovate
Copy link
Copy Markdown
Author

renovate Bot commented Apr 8, 2025

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@renovate renovate Bot changed the title chore(deps): update dependency pylint to v3.3.6 chore(deps): update dependency pylint to v3.3.6 - abandoned Apr 8, 2025
@renovate
Copy link
Copy Markdown
Author

renovate Bot commented May 4, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants