Update dependency astroid to v2.13.2 #33

Merged
renovate[bot] merged 1 commits from renovate/astroid-2.x into main 2023-01-11 08:25:28 +01:00
renovate[bot] commented 2023-01-11 08:14:12 +01:00 (Migrated from github.com)

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
astroid ==2.12.13 -> ==2.13.2 age adoption passing confidence

Release Notes

PyCQA/astroid

v2.13.2

Compare Source

=============================
Release date: 2023-01-08

  • Removed version conditions on typing_extensions dependency. Removed typing_extensions from
    our tests requirements as it was preventing issues to appear in our continuous integration.

    Closes #​1945

v2.13.1

Compare Source

=============================
Release date: 2023-01-08

  • Bumping typing_extensions to 4.0.0 that is required when using Self

    Closes #​1942

v2.13.0

Compare Source

=============================
Release date: 2023-01-07

v2.12.14

Compare Source

==============================
Release date: 2023-01-06


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 is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [astroid](https://togithub.com/PyCQA/astroid) | `==2.12.13` -> `==2.13.2` | [![age](https://badges.renovateapi.com/packages/pypi/astroid/2.13.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/astroid/2.13.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/astroid/2.13.2/compatibility-slim/2.12.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/astroid/2.13.2/confidence-slim/2.12.13)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>PyCQA/astroid</summary> ### [`v2.13.2`](https://togithub.com/PyCQA/astroid/blob/HEAD/ChangeLog#Whats-New-in-astroid-2132) [Compare Source](https://togithub.com/PyCQA/astroid/compare/v2.13.1...v2.13.2) \============================= Release date: 2023-01-08 - Removed version conditions on typing_extensions dependency. Removed typing_extensions from our tests requirements as it was preventing issues to appear in our continuous integration. Closes [#&#8203;1945](https://togithub.com/PyCQA/astroid/issues/1945) ### [`v2.13.1`](https://togithub.com/PyCQA/astroid/blob/HEAD/ChangeLog#Whats-New-in-astroid-2131) [Compare Source](https://togithub.com/PyCQA/astroid/compare/v2.13.0...v2.13.1) \============================= Release date: 2023-01-08 - Bumping typing_extensions to 4.0.0 that is required when using `Self` Closes [#&#8203;1942](https://togithub.com/PyCQA/astroid/issues/1942) ### [`v2.13.0`](https://togithub.com/PyCQA/astroid/blob/HEAD/ChangeLog#Whats-New-in-astroid-2130) [Compare Source](https://togithub.com/PyCQA/astroid/compare/v2.12.14...v2.13.0) \============================= Release date: 2023-01-07 - Fixed importing of modules that have the same name as the file that is importing. `astroid` will now correctly handle an `import math` statement in a file called `math.py` by relying on the import system. Refs [PyCQA/pylint#&#8203;5151](https://togithub.com/PyCQA/pylint/issues/5151) - Create `ContextManagerModel` and let `GeneratorModel` inherit from it. Refs [PyCQA/pylint#&#8203;2567](https://togithub.com/PyCQA/pylint/issues/2567) - Added a `regex` brain. Refs [PyCQA/pylint#&#8203;1911](https://togithub.com/PyCQA/pylint/issues/1911) - Support "is None" constraints from if statements during inference. Ref [#&#8203;791](https://togithub.com/PyCQA/astroid/issues/791) Ref [PyCQA/pylint#&#8203;157](https://togithub.com/PyCQA/pylint/issues/157) Ref [PyCQA/pylint#&#8203;1472](https://togithub.com/PyCQA/pylint/issues/1472) Ref [PyCQA/pylint#&#8203;2016](https://togithub.com/PyCQA/pylint/issues/2016) Ref [PyCQA/pylint#&#8203;2631](https://togithub.com/PyCQA/pylint/issues/2631) Ref [PyCQA/pylint#&#8203;2880](https://togithub.com/PyCQA/pylint/issues/2880) ### [`v2.12.14`](https://togithub.com/PyCQA/astroid/blob/HEAD/ChangeLog#Whats-New-in-astroid-21214) [Compare Source](https://togithub.com/PyCQA/astroid/compare/v2.12.13...v2.12.14) \============================== Release date: 2023-01-06 - Handle the effect of properties on the `__init__` of a dataclass correctly. Closes [PyCQA/pylint#&#8203;5225](https://togithub.com/PyCQA/pylint/issues/5225) - Handle the effect of `kw_only=True` in dataclass fields correctly. Closes [PyCQA/pylint#&#8203;7623](https://togithub.com/PyCQA/pylint/issues/7623) - Handle the effect of `init=False` in dataclass fields correctly. Closes [PyCQA/pylint#&#8203;7291](https://togithub.com/PyCQA/pylint/issues/7291) - Fix crash if `numpy` module doesn't have `version` attribute. Refs [PyCQA/pylint#&#8203;7868](https://togithub.com/PyCQA/pylint/issues/7868) - Handle `AttributeError` during `str.format` template inference tip evaluation Closes [PyCQA/pylint#&#8203;1902](https://togithub.com/PyCQA/pylint/issues/1902) - Add the `masked_invalid` function in the `numpy.ma` brain. Closes [PyCQA/pylint#&#8203;5715](https://togithub.com/PyCQA/pylint/issues/5715) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/luketainton/pypilot). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzQuOTcuMSJ9-->
luketainton (Migrated from github.com) reviewed 2023-01-11 08:14:12 +01:00
sonarqubecloud[bot] commented 2023-01-11 08:18:31 +01:00 (Migrated from github.com)

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

Kudos, SonarCloud Quality Gate passed!&nbsp; &nbsp; [![Quality Gate passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/passed-16px.png 'Quality Gate passed')](https://sonarcloud.io/dashboard?id=luketainton_pypilot&pullRequest=33) [![Bug](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/bug-16px.png 'Bug')](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=BUG) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=BUG) [0 Bugs](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=BUG) [![Vulnerability](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/vulnerability-16px.png 'Vulnerability')](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=VULNERABILITY) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=VULNERABILITY) [0 Vulnerabilities](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=VULNERABILITY) [![Security Hotspot](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/security_hotspot-16px.png 'Security Hotspot')](https://sonarcloud.io/project/security_hotspots?id=luketainton_pypilot&pullRequest=33&resolved=false&types=SECURITY_HOTSPOT) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/security_hotspots?id=luketainton_pypilot&pullRequest=33&resolved=false&types=SECURITY_HOTSPOT) [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=luketainton_pypilot&pullRequest=33&resolved=false&types=SECURITY_HOTSPOT) [![Code Smell](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/code_smell-16px.png 'Code Smell')](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=CODE_SMELL) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=CODE_SMELL) [0 Code Smells](https://sonarcloud.io/project/issues?id=luketainton_pypilot&pullRequest=33&resolved=false&types=CODE_SMELL) [![No Coverage information](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/CoverageChart/NoCoverageInfo-16px.png 'No Coverage information')](https://sonarcloud.io/component_measures?id=luketainton_pypilot&pullRequest=33&metric=coverage&view=list) No Coverage information [![No Duplication information](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/Duplications/NoDuplicationInfo-16px.png 'No Duplication information')](https://sonarcloud.io/component_measures?id=luketainton_pypilot&pullRequest=33&metric=duplicated_lines_density&view=list) No Duplication information
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: repos/pypilot#33
No description provided.