Bug 556290
| Summary: | python-coverage appears to be missing a dependency on python-setuptools | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Elijah Newren <newren> |
| Component: | python-coverage | Assignee: | Luke Macken <lmacken> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 11 | CC: | dmalcolm, jpazdziora, lmacken, pfrields, tcallawa |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | python-coverage-2.85-3.fc11 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-03-18 03:14:11 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Fixed in rawhide, F11 and F12 python-coverage-2.85-3.fc11 has been submitted as an update for Fedora 11. http://admin.fedoraproject.org/updates/python-coverage-2.85-3.fc11 python-coverage-3.2-2.fc12 has been submitted as an update for Fedora 12. http://admin.fedoraproject.org/updates/python-coverage-3.2-2.fc12 python-coverage-3.2-2.fc12 has been pushed to the Fedora 12 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update python-coverage'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F12/FEDORA-2010-0720 python-coverage-2.85-3.fc11 has been pushed to the Fedora 11 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update python-coverage'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F11/FEDORA-2010-0736 *** Bug 565853 has been marked as a duplicate of this bug. *** python-coverage-3.2-2.fc12 has been pushed to the Fedora 12 stable repository. If problems still persist, please make note of it in this bug report. python-coverage-2.85-3.fc11 has been pushed to the Fedora 11 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: It looks like the python-coverage package is missing a dependency on python-setuptools, at least on Fedora 11. After I installed python-coverage (2.85-2) via yum on Fedora 11, attempting to run it gives me: $ coverage -x testfastassign Traceback (most recent call last): File "/usr/bin/coverage", line 5, in <module> from pkg_resources import load_entry_point ImportError: No module named pkg_resources If I also manually install python-setuptools, then this error goes away (a quick google suggests that the python folks are considering splitting pkg_resources out of setuptools and either putting it in its own package or making part of the core distribution, so this may be specific to python <= 2.6.x). Version-Release number of selected component (if applicable): 2.85-2 How reproducible: Always Steps to Reproduce: 1. rpm -e python-setuptools (if you already have it installed) 2. yum install python-coverage Actual results: The coverage exectuable fails with an ImportError. Expected results: The coverage executable runs to completion