| Summary: | awscli requires python3-PyYAML | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Diego <diego.ml> |
| Component: | awscli | Assignee: | Fabio Alessandro Locati <fale> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 25 | CC: | fale, massi.ergosum |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | awscli-1.11.28-2.fc25 awscli-1.11.28-2.fc24 awscli-1.11.28-2.el7 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-12-27 05:18:33 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: | |
awscli-1.11.28-2.fc25 has been submitted as an update to Fedora 25. https://bodhi.fedoraproject.org/updates/FEDORA-2016-bfcef83b6b awscli-1.11.28-2.fc24 has been submitted as an update to Fedora 24. https://bodhi.fedoraproject.org/updates/FEDORA-2016-ca1b7c7836 awscli-1.11.28-2.el7 has been submitted as an update to Fedora EPEL 7. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-eb8432856e awscli-1.11.28-2.fc23 has been submitted as an update to Fedora 23. https://bodhi.fedoraproject.org/updates/FEDORA-2016-cad3dd7c2f awscli-1.11.28-2.fc23 has been pushed to the Fedora 23 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-2016-cad3dd7c2f awscli-1.11.28-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-2016-eb8432856e awscli-1.11.28-2.fc24 has been pushed to the Fedora 24 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-2016-ca1b7c7836 awscli-1.11.28-2.fc25 has been pushed to the Fedora 25 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-2016-bfcef83b6b awscli-1.11.28-2.fc25 has been pushed to the Fedora 25 stable repository. If problems still persist, please make note of it in this bug report. awscli-1.11.28-2.fc24 has been pushed to the Fedora 24 stable repository. If problems still persist, please make note of it in this bug report. awscli-1.11.28-2.fc25 has been pushed to the Fedora 25 stable repository. If problems still persist, please make note of it in this bug report. awscli-1.11.28-2.el7 has been pushed to the Fedora EPEL 7 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: awscli package seems to require python3-PyYAML, but it isn't a runtime dependency. Version-Release number of selected component (if applicable): awscli-1.11.24-1.fc25.noarch How reproducible: Always Steps to Reproduce: 1. 'dnf install awscli' 2. 'aws configure' fails $ aws configure Traceback (most recent call last): File "/usr/bin/aws", line 27, in <module> sys.exit(main()) File "/usr/bin/aws", line 23, in main return awscli.clidriver.main() File "/usr/lib/python3.5/site-packages/awscli/clidriver.py", line 53, in main driver = create_clidriver() File "/usr/lib/python3.5/site-packages/awscli/clidriver.py", line 62, in create_clidriver event_hooks=emitter) File "/usr/lib/python3.5/site-packages/awscli/plugin.py", line 44, in load_plugins modules = _import_plugins(plugin_mapping) File "/usr/lib/python3.5/site-packages/awscli/plugin.py", line 61, in _import_plugins module = __import__(path, fromlist=[module]) File "/usr/lib/python3.5/site-packages/awscli/handlers.py", line 27, in <module> from awscli.customizations.cloudformation import initialize as cloudformation_init File "/usr/lib/python3.5/site-packages/awscli/customizations/cloudformation/__init__.py", line 13, in <module> from awscli.customizations.cloudformation.package import PackageCommand File "/usr/lib/python3.5/site-packages/awscli/customizations/cloudformation/package.py", line 21, in <module> from awscli.customizations.cloudformation.artifact_exporter import Template File "/usr/lib/python3.5/site-packages/awscli/customizations/cloudformation/artifact_exporter.py", line 25, in <module> from awscli.customizations.cloudformation.yamlhelper import yaml_dump, \ File "/usr/lib/python3.5/site-packages/awscli/customizations/cloudformation/yamlhelper.py", line 14, in <module> import yaml ImportError: No module named 'yaml' 3. 'dnf install python3-PyYAML' 4. 'aws configure' succeeds Actual results: aws configure crashes because of missing dependency Expected results: aws configure works without complaining out of the box