Bug 1811130
| Summary: | Colander needs to require python-iso8601 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora EPEL | Reporter: | W. Andrew Denton <bugzilla.redhat> |
| Component: | python-colander | Assignee: | Fedora Infrastructure SIG <infra-sig> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | epel7 | CC: | igor.raits, infra-sig, lewk, rbean |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | python-colander-1.7.0-2.el7 | Doc Type: | --- |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2020-04-05 00:42:29 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: | |||
FEDORA-EPEL-2020-a105194954 has been submitted as an update to Fedora EPEL 7. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-a105194954 python-colander-1.7.0-2.el7 has been pushed to the Fedora EPEL 7 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-a105194954 FEDORA-EPEL-2020-a105194954 has been pushed to the Fedora EPEL 7 stable repository. If problem still persists, please make note of it in this bug report. |
Description of problem: python-colander-1.7.0-1.el7 needs a Requires: python-iso8601 or python2-iso8601. When importing colander after the update to 1.7.0, I get a traceback: Traceback (most recent call last): ... File "/usr/lib/python2.7/site-packages/colander/__init__.py", line 13, in <module> from iso8601 import iso8601 ImportError: No module named iso8601 Version-Release number of selected component (if applicable): python-colander-1.7.0-1.el7 How reproducible: Always Steps to Reproduce: # python Python 2.7.5 (default, Aug 7 2019, 00:51:29) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import colander Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/site-packages/colander/__init__.py", line 13, in <module> from iso8601 import iso8601 ImportError: No module named iso8601 >>>