-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add regression test for #7506 #8432
Conversation
@@ -7,5 +7,6 @@ pytest-cov~=4.0 | |||
pytest-profiling~=1.7 | |||
pytest-xdist~=3.2 | |||
# Type packages for mypy | |||
six |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already had tests depending on six
, and we were already installing six as a transitive dependency of pytest-profiling
, but I figure it's better to make it explicit in case that ever changes.
@@ -98,8 +99,10 @@ def blop(self): | |||
import zoneinfo | |||
|
|||
|
|||
class WithMetaclass(metaclass=ABCMeta): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
6dfb165
to
591dddb
Compare
π€ According to the primer, this change has no effect on the checked open source code. π€π This comment was generated for commit 591dddb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but why couldn't it go in 2.17.2 ? There's going to be a lot to do before actually releasing 3.0.0 I think and we may support 2.X branch for some time.
That would be ideal, but we would need to backport the PR that updated astroid to 2.15.1. Shall we do that? |
We might do 2.15.2 directly to save on labor cost. |
Opened #8530 for the astroid upgrade. |
But ti's definitely not saving on labor cost because it create a conflict that prevent automatic backport π |
* Add regression test for #7506 (#8432) (cherry picked from commit 1fa16c2) --------- Co-authored-by: Pierre Sassoulas <[email protected]> Co-authored-by: Jacob Walls <[email protected]>
Type of Changes
Description
Closes #7506
Depends on pylint-dev/astroid#2049