[python-pyqtgraph] 01/03: Merge tag 'upstream/0.10.0'

Gianfranco Costamagna locutusofborg at moszumanska.debian.org
Wed Nov 9 14:25:58 UTC 2016


This is an automated email from the git hooks/post-receive script.

locutusofborg pushed a commit to branch master
in repository python-pyqtgraph.

commit b87a4fc7f12855500b0c65af7e873afc6330ab18
Merge: 0fa668d 25aff39
Author: Gianfranco Costamagna <costamagnagianfranco at yahoo.it>
Date:   Wed Nov 9 14:46:22 2016 +0100

    Merge tag 'upstream/0.10.0'
    
    Upstream version 0.10.0

 .coveragerc                                        |  19 +
 .gitignore                                         | 110 +++-
 .travis.yml                                        | 150 ++---
 CHANGELOG                                          |  56 ++
 CONTRIBUTING.txt                                   |   9 +
 README.md                                          |  11 +-
 doc/listmissing.py                                 |   4 +-
 doc/source/apireference.rst                        |   1 +
 doc/source/conf.py                                 |   4 +-
 doc/source/config_options.rst                      |  41 ++
 doc/source/functions.rst                           |   2 +
 doc/source/graphicsItems/make                      |   2 +-
 doc/source/introduction.rst                        |  63 +-
 doc/source/widgets/make                            |   2 +-
 doc/source/widgets/rawimagewidget.rst              |   8 -
 examples/FillBetweenItem.py                        |   2 +
 examples/Flowchart.py                              |   2 +-
 examples/FlowchartCustomNode.py                    |   6 +-
 examples/GradientWidget.py                         |   2 +-
 examples/ImageView.py                              |  17 +-
 examples/InfiniteLine.py                           |  45 ++
 examples/PlotWidget.py                             |   2 +-
 examples/Plotting.py                               |   4 +-
 examples/ROIExamples.py                            |   6 +
 examples/ROItypes.py                               |  18 +-
 examples/ScatterPlotSpeedTest.py                   |   4 +-
 examples/ScatterPlotWidget.py                      |  78 ++-
 examples/SpinBox.py                                |  18 +-
 examples/Symbols.py                                |  38 ++
 examples/VideoSpeedTest.py                         |  19 +-
 examples/VideoTemplate.ui                          |  15 +-
 examples/VideoTemplate_pyqt.py                     |  19 +-
 ...eoTemplate_pyside.py => VideoTemplate_pyqt5.py} | 136 +++--
 examples/VideoTemplate_pyside.py                   |  20 +-
 examples/ViewBox.py                                |   4 +-
 examples/__main__.py                               | 238 ++------
 examples/exampleLoaderTemplate.ui                  | 110 ++--
 examples/exampleLoaderTemplate_pyqt.py             | 108 ++--
 examples/exampleLoaderTemplate_pyqt5.py            |  93 +++
 examples/exampleLoaderTemplate_pyside.py           |  93 +--
 examples/hdf5.py                                   |   6 +-
 examples/imageAnalysis.py                          |  11 +-
 examples/infiniteline_performance.py               |  52 ++
 examples/initExample.py                            |   8 +
 examples/multiplePlotSpeedTest.py                  |   4 +-
 examples/optics/pyoptic.py                         |   8 +-
 examples/parallelize.py                            |   4 +-
 examples/parametertree.py                          |   2 +-
 examples/relativity/__init__.py                    |   2 +-
 examples/relativity/relativity.py                  |  21 +-
 examples/template.py                               |   2 +
 examples/test_examples.py                          |  37 ++
 examples/text.py                                   |   3 +-
 examples/utils.py                                  | 165 ++++++
 pyqtgraph/GraphicsScene/GraphicsScene.py           |  17 +-
 pyqtgraph/GraphicsScene/exportDialog.py            |   9 +-
 .../GraphicsScene/exportDialogTemplate_pyqt5.py    |  64 +++
 pyqtgraph/GraphicsScene/mouseEvents.py             |   2 -
 pyqtgraph/Qt.py                                    | 156 ++++-
 pyqtgraph/SRTTransform.py                          |   2 +
 pyqtgraph/WidgetGroup.py                           |  32 +-
 pyqtgraph/__init__.py                              |  26 +-
 pyqtgraph/canvas/CanvasTemplate_pyqt5.py           |  96 ++++
 pyqtgraph/canvas/TransformGuiTemplate_pyqt5.py     |  56 ++
 pyqtgraph/colormap.py                              |   6 +-
 pyqtgraph/configfile.py                            |   7 +-
 pyqtgraph/console/Console.py                       |  15 +-
 pyqtgraph/console/template_pyqt5.py                | 107 ++++
 pyqtgraph/debug.py                                 | 101 ++--
 pyqtgraph/dockarea/Dock.py                         |  18 +-
 pyqtgraph/dockarea/DockArea.py                     |  52 +-
 pyqtgraph/exporters/Exporter.py                    |   2 +-
 pyqtgraph/exporters/SVGExporter.py                 |  35 --
 pyqtgraph/exporters/tests/__init__.py              |   0
 pyqtgraph/exporters/tests/test_csv.py              |  18 +-
 pyqtgraph/exporters/tests/test_svg.py              |  28 +-
 pyqtgraph/flowchart/Flowchart.py                   |  32 +-
 pyqtgraph/flowchart/FlowchartCtrlTemplate_pyqt5.py |  67 +++
 pyqtgraph/flowchart/FlowchartGraphicsView.py       |  70 +--
 pyqtgraph/flowchart/FlowchartTemplate_pyqt5.py     |  55 ++
 pyqtgraph/flowchart/Node.py                        |   3 +-
 pyqtgraph/flowchart/Terminal.py                    |  85 +--
 pyqtgraph/flowchart/eq.py                          |  36 --
 pyqtgraph/flowchart/library/Filters.py             |  13 +-
 pyqtgraph/flowchart/library/functions.py           |   2 +
 pyqtgraph/functions.py                             | 246 +++++---
 pyqtgraph/graphicsItems/CurvePoint.py              |   5 +
 pyqtgraph/graphicsItems/FillBetweenItem.py         |  34 +-
 pyqtgraph/graphicsItems/GradientEditorItem.py      |  54 +-
 pyqtgraph/graphicsItems/GraphicsItem.py            |   4 -
 pyqtgraph/graphicsItems/HistogramLUTItem.py        |  14 +-
 pyqtgraph/graphicsItems/ImageItem.py               | 205 +++++--
 pyqtgraph/graphicsItems/InfiniteLine.py            | 357 +++++++++---
 pyqtgraph/graphicsItems/IsocurveItem.py            |  36 +-
 pyqtgraph/graphicsItems/PlotCurveItem.py           |   8 +
 pyqtgraph/graphicsItems/PlotDataItem.py            |  11 +-
 pyqtgraph/graphicsItems/PlotItem/PlotItem.py       |  79 +--
 .../PlotItem/plotConfigTemplate_pyqt5.py           | 169 ++++++
 pyqtgraph/graphicsItems/ROI.py                     | 307 ++++++----
 pyqtgraph/graphicsItems/ScatterPlotItem.py         | 286 +++++-----
 pyqtgraph/graphicsItems/TextItem.py                | 185 +++---
 pyqtgraph/graphicsItems/ViewBox/ViewBox.py         |  41 +-
 pyqtgraph/graphicsItems/ViewBox/ViewBoxMenu.py     |  12 +-
 .../graphicsItems/ViewBox/axisCtrlTemplate_pyqt.py |   2 +-
 ...lTemplate_pyqt.py => axisCtrlTemplate_pyqt5.py} | 117 ++--
 .../graphicsItems/ViewBox/tests/test_ViewBox.py    |  28 +-
 pyqtgraph/graphicsItems/tests/test_ImageItem.py    | 147 +++++
 pyqtgraph/graphicsItems/tests/test_InfiniteLine.py |  96 ++++
 .../graphicsItems/tests/test_PlotCurveItem.py      |  34 ++
 pyqtgraph/graphicsItems/tests/test_ROI.py          | 226 ++++++++
 .../graphicsItems/tests/test_ScatterPlotItem.py    |  12 +-
 pyqtgraph/imageview/ImageView.py                   | 102 +++-
 pyqtgraph/imageview/ImageViewTemplate_pyqt.py      |   2 +-
 pyqtgraph/imageview/ImageViewTemplate_pyqt5.py     | 156 +++++
 pyqtgraph/imageview/tests/test_imageview.py        |   1 +
 pyqtgraph/metaarray/MetaArray.py                   |  31 +-
 pyqtgraph/multiprocess/parallelizer.py             |   2 +
 pyqtgraph/multiprocess/processes.py                |  17 +-
 pyqtgraph/multiprocess/remoteproxy.py              |  35 +-
 pyqtgraph/opengl/GLGraphicsItem.py                 |   6 +-
 pyqtgraph/opengl/GLViewWidget.py                   |  19 +-
 pyqtgraph/opengl/MeshData.py                       |   4 +-
 pyqtgraph/parametertree/Parameter.py               |   5 +-
 pyqtgraph/parametertree/SystemSolver.py            |   2 +-
 pyqtgraph/parametertree/parameterTypes.py          |  30 +-
 .../parametertree/tests/test_parametertypes.py     |   4 +-
 pyqtgraph/pixmaps/__init__.py                      |   1 +
 pyqtgraph/python2_3.py                             |  18 +-
 pyqtgraph/tests/__init__.py                        |   2 +
 pyqtgraph/tests/image_testing.py                   | 634 +++++++++++++++++++++
 pyqtgraph/tests/test_exit_crash.py                 |  14 +-
 pyqtgraph/tests/test_functions.py                  | 230 +++++++-
 pyqtgraph/tests/test_qt.py                         |   6 +-
 pyqtgraph/tests/test_ref_cycles.py                 |  11 +
 pyqtgraph/tests/test_stability.py                  |  12 +-
 pyqtgraph/tests/ui_testing.py                      |  55 ++
 pyqtgraph/util/cprint.py                           |   1 +
 pyqtgraph/util/garbage_collector.py                |   2 +-
 pyqtgraph/widgets/ComboBox.py                      |   5 +-
 pyqtgraph/widgets/GraphicsView.py                  |   6 +-
 pyqtgraph/widgets/MatplotlibWidget.py              |  18 +-
 pyqtgraph/widgets/PlotWidget.py                    |   2 +-
 pyqtgraph/widgets/RawImageWidget.py                |   5 +-
 pyqtgraph/widgets/RemoteGraphicsView.py            |  11 +
 pyqtgraph/widgets/ScatterPlotWidget.py             |   9 +-
 pyqtgraph/widgets/SpinBox.py                       | 102 ++--
 pyqtgraph/widgets/TableWidget.py                   |  38 +-
 pyqtgraph/widgets/TreeWidget.py                    |   6 +-
 setup.py                                           |  68 ++-
 tools/pg-release.py                                | 252 ++++++++
 tools/pyuic5                                       |   2 +
 tools/rebuildUi.py                                 |  68 ++-
 tools/release_instructions.md                      |  34 ++
 tools/setVersion.py                                |  26 -
 tools/setupHelpers.py                              |  49 +-
 tools/shell.py                                     |  38 ++
 156 files changed, 5818 insertions(+), 2154 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-pyqtgraph.git



More information about the debian-science-commits mailing list