Bug 1243582
| Summary: | python3-scipy not listed as requirement for python3-pykalman | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Ancantus <rmestep> |
| Component: | python-pykalman | Assignee: | Ankur Sinha (FranciscoD) <sanjay.ankur> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 22 | CC: | sanjay.ankur |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | python-pykalman-0.9.5-4.20140827git2aeb4ad.fc21 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2015-07-30 00:39:11 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: | |||
Hrm. The requirement was mentioned in the spec but in the wrong place. It got added to python-pykalman instead of python3-pykalman. Pushing a fix now. python-pykalman-0.9.5-4.20140827git2aeb4ad.fc21 has been submitted as an update for Fedora 21. https://admin.fedoraproject.org/updates/python-pykalman-0.9.5-4.20140827git2aeb4ad.fc21 python-pykalman-0.9.5-4.20140827git2aeb4ad.fc22 has been submitted as an update for Fedora 22. https://admin.fedoraproject.org/updates/python-pykalman-0.9.5-4.20140827git2aeb4ad.fc22 Package python-pykalman-0.9.5-4.20140827git2aeb4ad.fc22: * should fix your issue, * was pushed to the Fedora 22 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing python-pykalman-0.9.5-4.20140827git2aeb4ad.fc22' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2015-11753/python-pykalman-0.9.5-4.20140827git2aeb4ad.fc22 then log in and leave karma (feedback). python-pykalman-0.9.5-4.20140827git2aeb4ad.fc22 has been pushed to the Fedora 22 stable repository. If problems still persist, please make note of it in this bug report. python-pykalman-0.9.5-4.20140827git2aeb4ad.fc21 has been pushed to the Fedora 21 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: The current python3-kalman package doesn't require any other python packages when installed. But it requires python3-scipy and probably other python packages as well. Version-Release number of selected component (if applicable): python3-pykalman-0.9.5-2.20140827git2aeb4ad.fc22.noarch Steps to Reproduce: 1. Clean install of Fedora 22 2. $ dnf install python3-pykalman 3. $ python3 -c 'import pykalman' Actual results: Traceback (most recent call last): File "<string>", line 1, in <module> File "/usr/lib/python3.4/site-packages/pykalman/__init__.py", line 10, in <module> from .standard import KalmanFilter File "/usr/lib/python3.4/site-packages/pykalman/standard.py", line 12, in <module> from scipy import linalg ImportError: No module named 'scipy' Expected results: dnf should install python3-scipy package along with python3-pykalman so that there is no ImportError when using the package. Additional info: $ dnf repoquery --requires --resolve python3-pykalman python3-0:3.4.2-4.fc22.i686 python3-0:3.4.2-4.fc22.x86_64 The package requires no other python modules besides itself and the python3 run-time.