Skip to content
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

Test fails with pylint issue with importing collections.abc on python 3.13.1 #1728

Closed
andy-maier opened this issue Dec 13, 2024 · 0 comments · Fixed by #1729 or #1732
Closed

Test fails with pylint issue with importing collections.abc on python 3.13.1 #1728

andy-maier opened this issue Dec 13, 2024 · 0 comments · Fixed by #1729 or #1732

Comments

@andy-maier
Copy link
Member

andy-maier commented Dec 13, 2024

The zhmcclient project imports from collections.abc.

Starting with Python 3.13.1, pylint (minimum version as well as latest version) raises this issue:

E0401: Unable to import 'collections.abc' (import-error)

This is a false positive, since the import actually works fine.

The issue is already discussed in the pylint project in issue pylint-dev/pylint#10112

Versions:

  • Python 3.13.1 (does not happen on 3.13.0 or earlier)
  • pylint 3.3.2
  • astroid 3.3.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment