xarray-graph 0.2.4__tar.gz → 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/PKG-INFO +4 -4
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/pyproject.toml +4 -4
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/src/xarray_graph/XarrayGraph.py +1 -0
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/LICENSE +0 -0
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/README.md +0 -0
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/src/xarray_graph/__init__.py +0 -0
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/src/xarray_graph/__main__.py +0 -0
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/src/xarray_graph/tmp/RegionsManager.py +0 -0
- {xarray_graph-0.2.4 → xarray_graph-0.2.5}/tests/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xarray-graph
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: PyQt/PySide UI for graphing (x,y) slices of Xarray datasets.
|
|
5
5
|
Keywords: PyQt,PySide,xarray,graph
|
|
6
6
|
Home-page: https://github.com/marcel-goldschen-ohm/xarray-graph
|
|
@@ -22,9 +22,9 @@ Requires-Dist: numpy>=1.26.2
|
|
|
22
22
|
Requires-Dist: xarray>=2023.12.0
|
|
23
23
|
Requires-Dist: qtpy>=2.4.1
|
|
24
24
|
Requires-Dist: qtawesome>=1.3.0
|
|
25
|
-
Requires-Dist: pyqt-ext>=1.2.
|
|
26
|
-
Requires-Dist: pyqtgraph-ext>=1.2.
|
|
27
|
-
Requires-Dist: xarray-treeview>=1.2.
|
|
25
|
+
Requires-Dist: pyqt-ext>=1.2.5
|
|
26
|
+
Requires-Dist: pyqtgraph-ext>=1.2.6
|
|
27
|
+
Requires-Dist: xarray-treeview>=1.2.6
|
|
28
28
|
Requires-Dist: scipy>=1.11.4
|
|
29
29
|
Requires-Dist: lmfit>=1.2.2
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
@@ -11,9 +11,9 @@ dependencies = [
|
|
|
11
11
|
"xarray>=2023.12.0",
|
|
12
12
|
"qtpy>=2.4.1",
|
|
13
13
|
"qtawesome>=1.3.0",
|
|
14
|
-
"pyqt-ext>=1.2.
|
|
15
|
-
"pyqtgraph-ext>=1.2.
|
|
16
|
-
"xarray-treeview>=1.2.
|
|
14
|
+
"pyqt-ext>=1.2.5",
|
|
15
|
+
"pyqtgraph-ext>=1.2.6",
|
|
16
|
+
"xarray-treeview>=1.2.6",
|
|
17
17
|
"scipy>=1.11.4",
|
|
18
18
|
"lmfit>=1.2.2",
|
|
19
19
|
]
|
|
@@ -35,7 +35,7 @@ classifiers = [
|
|
|
35
35
|
"Programming Language :: Python :: 3.12",
|
|
36
36
|
"Programming Language :: Python :: 3.13",
|
|
37
37
|
]
|
|
38
|
-
version = "0.2.
|
|
38
|
+
version = "0.2.5"
|
|
39
39
|
|
|
40
40
|
[project.license]
|
|
41
41
|
text = "MIT"
|
|
@@ -1069,6 +1069,7 @@ class XarrayGraph(QMainWindow):
|
|
|
1069
1069
|
self._data_treeview.setModel(model)
|
|
1070
1070
|
self._data_treeview.selectionWasChanged.connect(self._on_tree_selection_changed)
|
|
1071
1071
|
self._data_treeviewer.setSizes([100, 1])
|
|
1072
|
+
self._data_treeviewer.metadata_tabs.setCurrentIndex(1)
|
|
1072
1073
|
|
|
1073
1074
|
self._xdim_combobox = QComboBox()
|
|
1074
1075
|
self._xdim_combobox.currentTextChanged.connect(self.set_xdim)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|