Skip to content

Commit

Permalink
Update app-model, coverage, dask, fsspec, hypothesis, `imag…
Browse files Browse the repository at this point in the history
…eio`, `ipython`, `jsonschema`, `matplotlib`, `napari-svg`, `numpy`, `pillow`, `pint`, `pydantic`, `pyqt5`, `pyqt6`, `pytest`, `scipy`, `tifffile` (napari#7045)

Updated packages: `app-model`, `coverage`, `dask`, `debugpy`,
`fonttools`, `fsspec`, `hypothesis`, `imageio`, `importlib-metadata`,
`ipykernel`, `ipython`, `jsonschema`, `matplotlib`, `napari-svg`,
`numcodecs`, `numpy`, `nvidia-cublas-cu12`, `nvidia-cuda-cupti-cu12`,
`nvidia-cuda-nvrtc-cu12`, `nvidia-cuda-runtime-cu12`,
`nvidia-cudnn-cu12`, `nvidia-cufft-cu12`, `nvidia-curand-cu12`,
`nvidia-cusolver-cu12`, `nvidia-cusparse-cu12`, `nvidia-nccl-cu12`,
`nvidia-nvjitlink-cu12`, `nvidia-nvtx-cu12`, `pillow`, `pint`, `pip`,
`pure-eval`, `pydantic`, `pydantic-core`, `pyqt5`, `pyqt5-sip`, `pyqt6`,
`pyqt6-sip`, `pytest`, `python3-xlib`, `rpds-py`, `scipy`, `sphinx`,
`sphinxcontrib-htmlhelp`, `sphinxcontrib-qthelp`, `sympy`, `tifffile`,
`triangle`, `triton`

---------

Co-authored-by: napari-bot <[email protected]>
Co-authored-by: Grzegorz Bokota <[email protected]>
  • Loading branch information
3 people authored Jul 24, 2024
1 parent 3d3cfd5 commit 6293bb2
Show file tree
Hide file tree
Showing 18 changed files with 869 additions and 825 deletions.
2 changes: 1 addition & 1 deletion napari/plugins/_plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def unregister(
self._theme_data,
self._function_widgets,
):
_dict.pop(_name, None) # type: ignore
_dict.pop(_name, None)

self.events.unregistered(value=_name)

Expand Down
2 changes: 1 addition & 1 deletion napari/settings/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def dict(
include: Union[AbstractSetIntStr, MappingIntStrAny] = None, # type: ignore
exclude: Union[AbstractSetIntStr, MappingIntStrAny] = None, # type: ignore
by_alias: bool = False,
exclude_unset: bool = False, # type: ignore [override] # deprecated parameter
exclude_unset: bool = False,
exclude_defaults: bool = False,
exclude_none: bool = False,
exclude_env: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion napari/utils/events/containers/_typed.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Index = Union[int, slice]

_T = TypeVar('_T')
_L = TypeVar('_L')
_L = TypeVar('_L', bound=Any)


class TypedMutableSequence(MutableSequence[_T]):
Expand Down
Loading

0 comments on commit 6293bb2

Please sign in to comment.