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.
@@ -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 (qtpy.API_NAME == 'PySide2') or (
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",
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.1.1'
16
- __version_tuple__ = version_tuple = (0, 1, 1)
15
+ __version__ = version = '0.1.2'
16
+ __version_tuple__ = version_tuple = (0, 1, 2)
@@ -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.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
- ![Screenshot of the napari-plugin-manager interface, showcasing the plugin descriptions](./images/description.png)
115
+ ![Screenshot of the napari-plugin-manager interface, showcasing the plugin descriptions](https://raw.githubusercontent.com/napari/napari-plugin-manager/refs/heads/main/images/description.png)
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
- ![Screenshot of the napari-plugin-manager interface showcasing the filtering features with the query 'arcos'](./images/filter.png)
164
+ ![Screenshot of the napari-plugin-manager interface showcasing the filtering features with the query 'arcos'](https://raw.githubusercontent.com/napari/napari-plugin-manager/main/images/filter.png)
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
- ![Screenshot of the napari-plugin-manager showing the process of installing a plugin](./images/install.png)
187
+ ![Screenshot of the napari-plugin-manager showing the process of installing a plugin](https://raw.githubusercontent.com/napari/napari-plugin-manager/main/images/install.png)
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
- ![Screenshot of the napari-plugin-manager showing the process of uninstalling a plugin](./images/uninstall.png)
201
+ ![Screenshot of the napari-plugin-manager showing the process of uninstalling a plugin](https://raw.githubusercontent.com/napari/napari-plugin-manager/main/images/uninstall.png)
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
- ![Screenshot of the napari-plugin-manager showing the process of updating a plugin](./images/update.png)
216
+ ![Screenshot of the napari-plugin-manager showing the process of updating a plugin](https://raw.githubusercontent.com/napari/napari-plugin-manager/main/images/update.png)
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
- ![Screenshot of the napari-plugin-amanger interface showcasing the status information, which is initially hidden by default.](./images/status.png)
239
+ ![Screenshot of the napari-plugin-manager interface showcasing the status information, which is initially hidden by default.](https://raw.githubusercontent.com/napari/napari-plugin-manager/main/images/status.png)
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=PKIMyjdUACH4-ONvtunQCnYE2UhlMfp9su83e3HXl5E,411
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=6FQpgfb0XnCVmGYbbniRJ3aRecbENEoZFYjWqEVayko,57043
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=60uthdVQ0VO4_h9vANnlRq56q7GrCu81LKL86PF2jLo,18908
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.1.dist-info/LICENSE,sha256=8dAlKbOqTMYe9L-gL_kEx5Xr1Sd0AbaWQDUkpiOp3vI,1506
16
- napari_plugin_manager-0.1.1.dist-info/METADATA,sha256=C1zlVsX6AKfgoGTDtE8VZ7bfsauJNV_sDu5pzKNyJ-Y,11560
17
- napari_plugin_manager-0.1.1.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
18
- napari_plugin_manager-0.1.1.dist-info/top_level.txt,sha256=pmCqLetuumhY1CKSuTZ5eQsitzazrSvc7V_mkugEPTY,22
19
- napari_plugin_manager-0.1.1.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5