Bug 1692145
| Summary: | missing dependencies on python2-wxpython and python2-pyserial | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Dominik 'Rathann' Mierzejewski <dominik> |
| Component: | python-pyobd | Assignee: | Jaroslav Škarvada <jskarvad> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 29 | CC: | extras-orphan, jskarvad |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | python-pyobd-0.9.3-15.fc30 python-pyobd-0.9.3-15.fc29 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2019-03-31 00:03:49 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: | |||
Thanks, it happen by package rename. python-pyobd-0.9.3-15.fc30 has been submitted as an update to Fedora 30. https://bodhi.fedoraproject.org/updates/FEDORA-2019-e13376616d python-pyobd-0.9.3-15.fc29 has been submitted as an update to Fedora 29. https://bodhi.fedoraproject.org/updates/FEDORA-2019-1d0b4f57cb python-pyobd-0.9.3-15.fc30 has been pushed to the Fedora 30 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-2019-e13376616d python-pyobd-0.9.3-15.fc29 has been pushed to the Fedora 29 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-2019-1d0b4f57cb python-pyobd-0.9.3-15.fc30 has been pushed to the Fedora 30 stable repository. If problems still persist, please make note of it in this bug report. python-pyobd-0.9.3-15.fc29 has been pushed to the Fedora 29 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: pyobd won't run if python2-wxpython and python2-pyserial are not installed, but they're not listed as dependencies. Version-Release number of selected component (if applicable): python2-pyobd-0.9.3-13.fc29.noarch How reproducible: Always Steps to Reproduce: 1. dnf install python2-pyobd 2. dnf remove python2-wxpython python2-pyserial 3. pyobd Actual results: $ pyobd Traceback (most recent call last): File "/usr/bin/pyobd", line 28, in <module> import wx ImportError: No module named wx $ pyobd Traceback (most recent call last): File "/usr/bin/pyobd", line 30, in <module> import pyobd.obd_io as obd_io #OBD2 funcs File "/usr/lib/python2.7/site-packages/pyobd/obd_io.py", line 24, in <module> import serial ImportError: No module named serial Expected results: Successful run.