Skip to content

Commit 059b021

Browse files
committedSep 27, 2023
Moved all "core" submodules to package root
1 parent c030f83 commit 059b021

File tree

160 files changed

+854
-861
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+854
-861
lines changed
 

‎.coveragerc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
parallel = True
33
omit =
44
*/plotpy/tests/*
5-
*/plotpy/core/plot/interactive.py
5+
*/plotpy/plot/interactive.py
66
*.vscode/extensions*
77
*/guidata/*

‎doc/dev/guiqwt_to_plotpy.csv

+29-29
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
guiqwt v4,plotpy v2,API changes
2-
``guiqwt.events``,``plotpy.core.events``
3-
``guiqwt.interfaces``,``plotpy.core.interfaces``
4-
``guiqwt.io``,``plotpy.core.io``
2+
``guiqwt.events``,``plotpy.events``
3+
``guiqwt.interfaces``,``plotpy.interfaces``
4+
``guiqwt.io``,``plotpy.io``
55
``guiqwt.io.eliminate_outliers``,*removed*
6-
``guiqwt.annotations``,``plotpy.core.items``
7-
``guiqwt.curve``,``plotpy.core.items``
8-
``guiqwt.image``,``plotpy.core.items``
9-
``guiqwt.label``,``plotpy.core.items``
10-
``guiqwt.shapes``,``plotpy.core.items``
11-
``guiqwt.histogram.HistogramItem``,``plotpy.core.items.HistogramItem``
12-
``guiqwt.histogram.HistDataSource``,``plotpy.core.items.histogram.HistDataSource``
13-
``guiqwt.histogram.hist_range_threshold``,``plotpy.core.lutrange.hist_range_threshold``
14-
``guiqwt.histogram.lut_range_threshold``,``plotpy.core.lutrange.lut_range_threshold``
15-
``guiqwt.histogram.ContrastAdjustment``,``plotpy.core.panels.contrastadjustment.ContrastAdjustment``
16-
``guiqwt.image.get_items_in_rectangle``,``plotpy.core.items.get_items_in_rectangle``
17-
``guiqwt.curve.PlotItemList``,``plotpy.core.panels.itemlist.PlotItemList``
18-
``guiqwt.cross_section.XCrossSection``,``plotpy.core.panels.csection.cswidget.XCrossSection``
19-
``guiqwt.cross_section.YCrossSection``,``plotpy.core.panels.csection.cswidget.YCrossSection``
20-
``guiqwt.cross_section.ObliqueCrossSection``,``plotpy.core.panels.csection.cswidget.ObliqueCrossSection``
21-
``guiqwt.plot.PlotManager``,``plotpy.core.plot.PlotManager``
22-
``guiqwt.plot.CurveWindow``,``plotpy.core.plot.PlotWindow``,See `Generic PlotWidgets`_
23-
``guiqwt.plot.BaseImageWidget``,``plotpy.core.plot.BasePlotWidget``,See `Generic PlotWidgets`_
24-
``guiqwt.plot.CurveWidget``,``plotpy.core.plot.PlotWidget``,See `Generic PlotWidgets`_
6+
``guiqwt.annotations``,``plotpy.items``
7+
``guiqwt.curve``,``plotpy.items``
8+
``guiqwt.image``,``plotpy.items``
9+
``guiqwt.label``,``plotpy.items``
10+
``guiqwt.shapes``,``plotpy.items``
11+
``guiqwt.histogram.HistogramItem``,``plotpy.items.HistogramItem``
12+
``guiqwt.histogram.HistDataSource``,``plotpy.items.histogram.HistDataSource``
13+
``guiqwt.histogram.hist_range_threshold``,``plotpy.lutrange.hist_range_threshold``
14+
``guiqwt.histogram.lut_range_threshold``,``plotpy.lutrange.lut_range_threshold``
15+
``guiqwt.histogram.ContrastAdjustment``,``plotpy.panels.contrastadjustment.ContrastAdjustment``
16+
``guiqwt.image.get_items_in_rectangle``,``plotpy.items.get_items_in_rectangle``
17+
``guiqwt.curve.PlotItemList``,``plotpy.panels.itemlist.PlotItemList``
18+
``guiqwt.cross_section.XCrossSection``,``plotpy.panels.csection.cswidget.XCrossSection``
19+
``guiqwt.cross_section.YCrossSection``,``plotpy.panels.csection.cswidget.YCrossSection``
20+
``guiqwt.cross_section.ObliqueCrossSection``,``plotpy.panels.csection.cswidget.ObliqueCrossSection``
21+
``guiqwt.plot.PlotManager``,``plotpy.plot.PlotManager``
22+
``guiqwt.plot.CurveWindow``,``plotpy.plot.PlotWindow``,See `Generic PlotWidgets`_
23+
``guiqwt.plot.BaseImageWidget``,``plotpy.plot.BasePlotWidget``,See `Generic PlotWidgets`_
24+
``guiqwt.plot.CurveWidget``,``plotpy.plot.PlotWidget``,See `Generic PlotWidgets`_
2525
``guiqwt.plot.CurveWidgetMixin``,``*removed*``,See `Generic PlotWidgets`_
26-
``guiqwt.plot.CurveDialog``,``plotpy.core.plot.PlotDialog``,See `Generic PlotWidgets`_
27-
``guiqwt.curve.CurvePlot``,``plotpy.core.plot.baseplot.BasePlot``,See `Generic PlotWidgets`_
26+
``guiqwt.plot.CurveDialog``,``plotpy.plot.PlotDialog``,See `Generic PlotWidgets`_
27+
``guiqwt.curve.CurvePlot``,``plotpy.plot.baseplot.BasePlot``,See `Generic PlotWidgets`_
2828
``guiqwt.curve.CurvePlot.canvas2plotitem``,*removed*
2929
``guiqwt.curve.CurvePlot.plotitem2canvas``,*removed*
30-
``guiqwt.plot.SubplotWidget``,``plotpy.core.plot.SubplotWidget``
30+
``guiqwt.plot.SubplotWidget``,``plotpy.plot.SubplotWidget``
3131
``guiqwt.pyplot``,``plotpy.pyplot``
32-
``guiqwt.styles``,``plotpy.core.styles``
33-
``guiqwt.tools``,``plotpy.core.tools``
32+
``guiqwt.styles``,``plotpy.styles``
33+
``guiqwt.tools``,``plotpy.tools``
3434
``guiqwt.colormap``,``plotpy.mathutils.colormap``
3535
``guiqwt.geometry``,``plotpy.mathutils.geometry``
3636
``guiqwt.qthelpers.exec_image_save_dialog``,``plotpy.widgets.imagefile.exec_image_save_dialog``
@@ -39,8 +39,8 @@ guiqwt v4,plotpy v2,API changes
3939
``guiqwt.qthelpers.mimedata2url``,*removed*
4040
``guiqwt.scaler``,``plotpy.mathutils.scaler``
4141
``guiqwt.debug``,*removed*
42-
``guiqwt.debug.buttons_to_str``,``plotpy.core.events.buttons_to_str``
43-
``guiqwt.debug.evt_type_to_str``,``plotpy.core.events.evt_type_to_str``
42+
``guiqwt.debug.buttons_to_str``,``plotpy.events.buttons_to_str``
43+
``guiqwt.debug.evt_type_to_str``,``plotpy.events.evt_type_to_str``
4444
``guiqwt.debug.print_event``,*removed*
4545
``guiqwt.debug.qimage_format``,*removed*
4646
``guiqwt.debug.qimage_to_str``,*removed*

0 commit comments

Comments
 (0)