|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | """ |
| 3 | +.. warning:: |
| 4 | +
|
| 5 | + *guiqwt* has been replaced by a new package called `PlotPy`_, which is a complete |
| 6 | + rewrite of the library, under more permissive license terms (BSD) with a lot of |
| 7 | + improvements (automatic test suite with ~70% test coverage, unified curve/image |
| 8 | + ready-to-use widgets, new documentation, ...). |
| 9 | +
|
| 10 | +.. figure:: images/plotpy-banner.png |
| 11 | + :align: center |
| 12 | +
|
| 13 | + We strongly recommend to use `PlotPy`_ instead of guiqwt. First, because guiqwt is |
| 14 | + not maintained anymore and second, because `PlotPy`_ is far more robust and tested. |
| 15 | + Moreover, you can easily migrate your existing guiqwt-based code to `PlotPy`_ |
| 16 | + thanks to the `migration guide <https://plotpy.readthedocs.io/en/latest/dev/guiqwt_to_plotpy.html>`_. |
| 17 | +
|
| 18 | +.. _PlotPy: https://github.com/PlotPyStack/plotpy |
| 19 | +
|
3 | 20 | guiqwt |
4 | 21 | ====== |
5 | 22 |
|
|
23 | 40 | """ |
24 | 41 |
|
25 | 42 |
|
26 | | -__version__ = "4.4.4" # Update here *AND* in setup.py! |
| 43 | +__version__ = "4.4.5" # Update here *AND* in setup.py! |
27 | 44 | # (Until setup.py has been fully retrofitted, this manual sync is mandatory) |
28 | 45 |
|
29 | 46 |
|
30 | 47 | def about(html=True, copyright_only=False): |
31 | 48 | """Return text about this package""" |
32 | | - import sys, os, os.path as osp, platform, guidata, guiqwt, qwt |
33 | | - from guiqwt.config import _ |
| 49 | + import os |
| 50 | + import os.path as osp |
| 51 | + import platform |
| 52 | + import sys |
| 53 | + |
| 54 | + import guidata |
| 55 | + import qwt |
34 | 56 | from qtpy import QtCore as QC |
35 | 57 |
|
| 58 | + import guiqwt |
| 59 | + from guiqwt.config import _ |
| 60 | + |
36 | 61 | name = __file__.split(osp.sep)[-2] |
37 | 62 | tf1 = ( |
38 | 63 | name, |
@@ -599,3 +624,11 @@ def about(html=True, copyright_only=False): |
599 | 624 | # |
600 | 625 | # |
601 | 626 | # Version 2.0 dated 2006-09-05. |
| 627 | +# |
| 628 | +# 13.2 Failing an amicable solution within two (2) months as from their |
| 629 | +# occurrence, and unless emergency proceedings are necessary, the |
| 630 | +# disagreements or disputes shall be referred to the Paris Courts having |
| 631 | +# jurisdiction, by the more diligent Party. |
| 632 | +# |
| 633 | +# |
| 634 | +# Version 2.0 dated 2006-09-05. |
0 commit comments