You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed AttributeError: 'TracebackException' object has no attribute 'exceptions' when formatting unpickled TBEs from another Python process which did not apply the exceptiongroup patches (#144)
Added **kwargs to function and method signatures as appropriate to match the signatures in the standard library
In line with the stdlib typings in typeshed, updated (Base)ExceptionGroup generic types to define defaults for their generic arguments (defaulting to BaseExceptionGroup[BaseException] and ExceptionGroup[Exception]) (PR by @mikenerone)
Changed BaseExceptionGroup.__init__() to directly call BaseException.__init__() instead of the superclass __init__() in order to emulate the CPython behavior (broken or not) (PR by @cfbolz)
Changed the exceptions attribute to always return the same tuple of exceptions, created from the original exceptions sequence passed to BaseExceptionGroup to match CPython behavior (#143)
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
To execute skipped test pipelines write comment /ok-to-test.
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Nov 22, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Nov 23, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Nov 23, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Nov 23, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Nov 23, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Nov 23, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Nov 23, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Nov 24, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Nov 24, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Nov 24, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Nov 24, 2025
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
Feb 13, 2026
konflux-internal-p02bot
changed the title
chore(deps): update dependency exceptiongroup to v1.3.1 - autoclosed
chore(deps): update dependency exceptiongroup to v1.3.1
Feb 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.2.2->==1.3.1Release Notes
agronholm/exceptiongroup (exceptiongroup)
v1.3.1Compare Source
AttributeError: 'TracebackException' object has no attribute 'exceptions'when formatting unpickled TBEs from another Python process which did not apply theexceptiongrouppatches (#144)v1.3.0Compare Source
**kwargsto function and method signatures as appropriate to match the signatures in the standard library(Base)ExceptionGroupgeneric types to define defaults for their generic arguments (defaulting toBaseExceptionGroup[BaseException]andExceptionGroup[Exception]) (PR by @mikenerone)BaseExceptionGroup.__init__()to directly callBaseException.__init__()instead of the superclass__init__()in order to emulate the CPython behavior (broken or not) (PR by @cfbolz)exceptionsattribute to always return the same tuple of exceptions, created from the original exceptions sequence passed toBaseExceptionGroupto match CPython behavior (#143)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.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.