Bug 1789213
| Summary: | python-nbformat fails to build with Python 3.9 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Charalampos Stratakis <cstratak> |
| Component: | python-nbformat | Assignee: | Orion Poplawski <orion> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | cstratak, mhroncok, orion, python-sig, tomspur |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | python-nbformat-5.0.3-1.fc32 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2020-01-12 00:57:07 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 1785415 | ||
|
Description
Charalampos Stratakis
2020-01-09 04:32:03 UTC
A potential fix: diff --git a/nbformat/notebooknode.py b/nbformat/notebooknode.py index 5e1fded..b8b59fa 100644 --- a/nbformat/notebooknode.py +++ b/nbformat/notebooknode.py @@ -1,7 +1,7 @@ """NotebookNode - adding attribute access to dicts""" from ipython_genutils.ipstruct import Struct -from collections import Mapping +from collections.abc import Mapping class NotebookNode(Struct): Looks like this was addressed in 5.0.0. So hopefully fixed now. The issue has been fixed, thanks Orion! |