napari-plugin-manager 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl
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.
- napari_plugin_manager/_tests/test_qt_plugin_dialog.py +1 -3
- napari_plugin_manager/_version.py +2 -2
- napari_plugin_manager/qt_plugin_dialog.py +2 -3
- {napari_plugin_manager-0.1.1.dist-info → napari_plugin_manager-0.1.2.dist-info}/METADATA +7 -7
- {napari_plugin_manager-0.1.1.dist-info → napari_plugin_manager-0.1.2.dist-info}/RECORD +8 -8
- {napari_plugin_manager-0.1.1.dist-info → napari_plugin_manager-0.1.2.dist-info}/WHEEL +1 -1
- {napari_plugin_manager-0.1.1.dist-info → napari_plugin_manager-0.1.2.dist-info}/LICENSE +0 -0
- {napari_plugin_manager-0.1.1.dist-info → napari_plugin_manager-0.1.2.dist-info}/top_level.txt +0 -0
|
@@ -14,9 +14,7 @@ from napari.utils.translations import trans
|
|
|
14
14
|
from qtpy.QtCore import QMimeData, QPointF, Qt, QUrl
|
|
15
15
|
from qtpy.QtGui import QDropEvent
|
|
16
16
|
|
|
17
|
-
if
|
|
18
|
-
sys.version_info[:2] > (3, 10) and platform.system() == "Linux"
|
|
19
|
-
):
|
|
17
|
+
if qtpy.API_NAME == 'PySide2' and sys.version_info[:2] > (3, 10):
|
|
20
18
|
pytest.skip(
|
|
21
19
|
"Known PySide2 x Python incompatibility: "
|
|
22
20
|
"... object cannot be interpreted as an integer",
|
|
@@ -17,6 +17,7 @@ from napari._qt.widgets.qt_tooltip import QtToolTipLabel
|
|
|
17
17
|
from napari.plugins.utils import normalized_name
|
|
18
18
|
from napari.settings import get_settings
|
|
19
19
|
from napari.utils.misc import (
|
|
20
|
+
StringEnum,
|
|
20
21
|
parse_version,
|
|
21
22
|
running_as_constructor_app,
|
|
22
23
|
)
|
|
@@ -104,9 +105,7 @@ class PluginListItem(QFrame):
|
|
|
104
105
|
author, source, version, and buttons to update, install/uninstall, etc."""
|
|
105
106
|
|
|
106
107
|
# item, package_name, action_name, version, installer_choice
|
|
107
|
-
actionRequested = Signal(
|
|
108
|
-
QListWidgetItem, str, InstallerActions, str, InstallerTools
|
|
109
|
-
)
|
|
108
|
+
actionRequested = Signal(QListWidgetItem, str, StringEnum, str, StringEnum)
|
|
110
109
|
|
|
111
110
|
def __init__(
|
|
112
111
|
self,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: napari-plugin-manager
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Install plugins for napari, in napari.
|
|
5
5
|
Author-email: napari team <napari-steering-council@googlegroups.com>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -112,7 +112,7 @@ This package currently provides:
|
|
|
112
112
|
the [npe2api service](https://api.napari.org).
|
|
113
113
|
- The ability to install other packages via URL of by dragging and dropping artifacts from [PyPI].
|
|
114
114
|
|
|
115
|
-

|
|
116
116
|
|
|
117
117
|
`napari-plugin-manager` knows how to detect if napari was installed using `conda` or `pip` and
|
|
118
118
|
provide the appropriate default installer tool on the `Installation Info` dropdown for each plugin.
|
|
@@ -161,7 +161,7 @@ In the image below filtering by the word `arcos` yields a single plugin, the
|
|
|
161
161
|
`arcos-gui` plugin. Notice that plugins that provide a display name, will show
|
|
162
162
|
the package name to the right in parenthesis.
|
|
163
163
|
|
|
164
|
-

|
|
165
165
|
|
|
166
166
|
### Refreshing
|
|
167
167
|
|
|
@@ -184,7 +184,7 @@ You can cancel the process at any time by clicking the `Cancel` button of each p
|
|
|
184
184
|
[conda-forge channel](https://anaconda.org/conda-forge/). Some plugins will require
|
|
185
185
|
a restart to be properly configured.
|
|
186
186
|
|
|
187
|
-

|
|
188
188
|
|
|
189
189
|
### Uninstalling a plugin
|
|
190
190
|
|
|
@@ -198,7 +198,7 @@ You can cancel the process at any time by clicking the `Cancel` button of each p
|
|
|
198
198
|
|
|
199
199
|
**Note**: Some plugins will require a restart to be properly removed.
|
|
200
200
|
|
|
201
|
-

|
|
202
202
|
|
|
203
203
|
### Updating a plugin
|
|
204
204
|
|
|
@@ -213,7 +213,7 @@ filtering by name or description.
|
|
|
213
213
|
|
|
214
214
|
You can cancel the process at any time by clicking the `Cancel` button of each plugin.
|
|
215
215
|
|
|
216
|
-

|
|
217
217
|
|
|
218
218
|
### Batch actions
|
|
219
219
|
|
|
@@ -236,7 +236,7 @@ Some issues that you might experience when using the installer include:
|
|
|
236
236
|
* Incompatible packages due to conflicting dependencies.
|
|
237
237
|
* Network connectivity errors.
|
|
238
238
|
|
|
239
|
-

|
|
240
240
|
|
|
241
241
|
## License
|
|
242
242
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
napari_plugin_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
napari_plugin_manager/_version.py,sha256=
|
|
2
|
+
napari_plugin_manager/_version.py,sha256=SFCDdrYA67D1Je-jHgVVh4LOopkPvuV6NMtqSJ7Tfhg,411
|
|
3
3
|
napari_plugin_manager/npe2api.py,sha256=lpanAxjpvEfGkHwTwVXmTSXWlMrjBxHOJ-p_-LbTW2o,4093
|
|
4
4
|
napari_plugin_manager/qt_package_installer.py,sha256=WPZZY3BQxH1OHm2-TBLf0-brzqV7Wh_Gnwk9hwFPmtQ,21454
|
|
5
|
-
napari_plugin_manager/qt_plugin_dialog.py,sha256=
|
|
5
|
+
napari_plugin_manager/qt_plugin_dialog.py,sha256=R2oPapmCdr0HHf3LZDcjKgbWeUFpaR7D3BlrciyI7hg,57035
|
|
6
6
|
napari_plugin_manager/qt_widgets.py,sha256=O8t5CbN8r_16cQzshyjvhTEYdUcj7OX0-bfYIiN2uSs,356
|
|
7
7
|
napari_plugin_manager/styles.qss,sha256=9ODPba2IorJybWObWoEO9VGq4AO0IYlAa8brN14tgZU,7379
|
|
8
8
|
napari_plugin_manager/utils.py,sha256=wG_lGPaMmbfyH-q7oTWDYSI2iAKiZ3cqxyjlRlbvFJo,753
|
|
@@ -10,10 +10,10 @@ napari_plugin_manager/_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
10
10
|
napari_plugin_manager/_tests/conftest.py,sha256=OvzenfBP2oIS6x8ksr9FhPXdsLV3Q_3Kzr6PRJe45Uc,1885
|
|
11
11
|
napari_plugin_manager/_tests/test_installer_process.py,sha256=fgO8OwYcCAz-OlGT_1G_eb4B69DPbnQdzjCrwTIeCpE,10523
|
|
12
12
|
napari_plugin_manager/_tests/test_npe2api.py,sha256=_YPo4jaA9cZ9OeeXn8HMJzijQ7OoWXnSiEN81NEzvhI,1031
|
|
13
|
-
napari_plugin_manager/_tests/test_qt_plugin_dialog.py,sha256=
|
|
13
|
+
napari_plugin_manager/_tests/test_qt_plugin_dialog.py,sha256=GMQjSWFr_Z-mc47nLNcHowR_hNWc2SkKGhqAqJDXZPs,18866
|
|
14
14
|
napari_plugin_manager/_tests/test_utils.py,sha256=7EilxmDkRjU6UO2AnaqyYovdAs18D0ZA5GCVGN62-3M,720
|
|
15
|
-
napari_plugin_manager-0.1.
|
|
16
|
-
napari_plugin_manager-0.1.
|
|
17
|
-
napari_plugin_manager-0.1.
|
|
18
|
-
napari_plugin_manager-0.1.
|
|
19
|
-
napari_plugin_manager-0.1.
|
|
15
|
+
napari_plugin_manager-0.1.2.dist-info/LICENSE,sha256=8dAlKbOqTMYe9L-gL_kEx5Xr1Sd0AbaWQDUkpiOp3vI,1506
|
|
16
|
+
napari_plugin_manager-0.1.2.dist-info/METADATA,sha256=gJ0PPHYmsRpdBmLr3UMdxqvyI-C60pKY8A8qV0U8DSs,11967
|
|
17
|
+
napari_plugin_manager-0.1.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
18
|
+
napari_plugin_manager-0.1.2.dist-info/top_level.txt,sha256=pmCqLetuumhY1CKSuTZ5eQsitzazrSvc7V_mkugEPTY,22
|
|
19
|
+
napari_plugin_manager-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
{napari_plugin_manager-0.1.1.dist-info → napari_plugin_manager-0.1.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|