Bug 596649
| Summary: | DeprecationWarning while plotting | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | simon <bonnefoy.simon> |
| Component: | python-matplotlib | Assignee: | Jef Spaleta <jspaleta> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 12 | CC: | gwync, jspaleta |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | python-matplotlib-0.99.1.2-4.fc13 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-06-28 17:10:46 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: | |||
This was patched in upstream svn in March, but hasn't made it into a matplotlib release yet. I'll try to cherry pick the patch and build updated Fedora packages for you to test. Stay tuned for a koji url. -jef Okay F12 build with the patch is finishing up right now at: http://koji.fedoraproject.org/koji/taskinfo?taskID=2213455 Please let me know if this appears to work for you. Once you report back that it works I'll push this to updates-testing for F12 and F13. -jef It's ok, I have tried it and it works. Thank you python-matplotlib-0.99.1.2-4.fc13 has been submitted as an update for Fedora 13. http://admin.fedoraproject.org/updates/python-matplotlib-0.99.1.2-4.fc13 python-matplotlib-0.99.1.2-4.fc13 has been pushed to the Fedora 13 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-matplotlib'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/python-matplotlib-0.99.1.2-4.fc13 python-matplotlib-0.99.1.2-4.fc13 has been pushed to the Fedora 13 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: when I try to plot with python-matplotlib, the figure is plotted, but the terminal report a bug about the package. Version-Release number of selected component (if applicable): python-matplotlib-0.99.1.2-1.fc12.x86_64 How reproducible: execute the following code: #!/usr/bin/python # *-* coding: utf-8 *-* from pylab import * from math import * i = 0 j = 0 ordonnee =[] abscisse = [] while (i<5): abscisse.append(i) ordonnee.append(cos(i)) i+=0.2 plot(abscisse, ordonnee) show() Steps to Reproduce: 1.install python matplotlib 2.run the code 3.Badaboum Actual results: /usr/lib64/python2.6/site-packages/matplotlib/backends/backend_gtk.py:621: DeprecationWarning: Use the new widget gtk.Tooltip self.tooltips = gtk.Tooltips() Expected results: terminal should be silent Additional info: