From e8b8804bae44458fbeed436566dc752cb3b42470 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 14:03:10 +0000 Subject: [PATCH 1/3] Bump the pip group with 2 updates Bumps the pip group with 2 updates: [python-socketio[asyncio_client]](https://github.com/miguelgrinberg/python-socketio) and [sensapex](https://github.com/sensapex/sensapex-py). Updates `python-socketio[asyncio_client]` from 5.15.0 to 5.15.1 - [Release notes](https://github.com/miguelgrinberg/python-socketio/releases) - [Changelog](https://github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) - [Commits](https://github.com/miguelgrinberg/python-socketio/compare/v5.15.0...v5.15.1) Updates `sensapex` from 1.400.4 to 1.504.1 - [Commits](https://github.com/sensapex/sensapex-py/commits/v1.504.1) --- updated-dependencies: - dependency-name: python-socketio[asyncio_client] dependency-version: 5.15.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pip - dependency-name: sensapex dependency-version: 1.504.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 373c143..46dc426 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,9 +31,9 @@ dependencies = [ "packaging==25.0", "platformdirs==4.5.1", "pyserial==3.5", - "python-socketio[asyncio_client]==5.15.0", + "python-socketio[asyncio_client]==5.15.1", "requests==2.32.5", - "sensapex==1.400.4", + "sensapex==1.504.1", "rich==14.2.0", "vbl-aquarium==1.1.0" ] From fbb7d8ce56e51b6f3a4ffe19714457e1732b3ee3 Mon Sep 17 00:00:00 2001 From: Kenneth Yang Date: Tue, 23 Dec 2025 14:19:05 -0800 Subject: [PATCH 2/3] Ignore stop type --- src/ephys_link/bindings/ump_binding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ephys_link/bindings/ump_binding.py b/src/ephys_link/bindings/ump_binding.py index 4dc125a..88d53be 100644 --- a/src/ephys_link/bindings/ump_binding.py +++ b/src/ephys_link/bindings/ump_binding.py @@ -142,7 +142,7 @@ async def set_depth(self, manipulator_id: str, depth: float, speed: float) -> fl @override async def stop(self, manipulator_id: str) -> None: - self._get_device(manipulator_id).stop() + self._get_device(manipulator_id).stop() # pyright: ignore [reportUnknownMemberType] @override def platform_space_to_unified_space(self, platform_space: Vector4) -> Vector4: From b0a321fb6fb07efb5497079f45720ae93c7e45bd Mon Sep 17 00:00:00 2001 From: kjy5 <82800265+kjy5@users.noreply.github.com> Date: Tue, 23 Dec 2025 22:19:23 +0000 Subject: [PATCH 3/3] Hatch static analysis --- src/ephys_link/bindings/ump_binding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ephys_link/bindings/ump_binding.py b/src/ephys_link/bindings/ump_binding.py index 88d53be..650f2df 100644 --- a/src/ephys_link/bindings/ump_binding.py +++ b/src/ephys_link/bindings/ump_binding.py @@ -142,7 +142,7 @@ async def set_depth(self, manipulator_id: str, depth: float, speed: float) -> fl @override async def stop(self, manipulator_id: str) -> None: - self._get_device(manipulator_id).stop() # pyright: ignore [reportUnknownMemberType] + self._get_device(manipulator_id).stop() # pyright: ignore [reportUnknownMemberType] @override def platform_space_to_unified_space(self, platform_space: Vector4) -> Vector4: