Skip to content

Commit e5eb30a

Browse files
committed
Fix: imu import broken on new plnr update
1 parent a976a5a commit e5eb30a

5 files changed

Lines changed: 1979 additions & 1877 deletions

File tree

docs/changelog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## 1.7
1+
## 1.7.3
2+
- Uses updated `pupil-labs-neon-recording` package and fixes IMU import
3+
4+
## 1.7.2
5+
6+
- Bundles `AudioPlayer` convenience class
7+
8+
## 1.7.1
29

310
- Adds audio support in simple and async API
411
- Simple API

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies = [
2525
"deprecated>=1.2.18",
2626
"dpkt>=1.9.8",
2727
"numpy",
28-
"pupil-labs-neon-recording>=1.0.1",
28+
"pupil-labs-neon-recording>=2.0.0",
2929
"pupil-labs-video>=1.0.3",
3030
"pydantic>=2.10.6",
3131
"sounddevice>=0.5.2",

src/pupil_labs/realtime_api/streaming/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import TypeVar
22

3-
from pupil_labs.neon_recording.stream.imu.imu_pb2 import ImuPacket # type: ignore
3+
from pupil_labs.neon_recording.timeseries.imu.imu_pb2 import ImuPacket # type: ignore
44

55
from .audio import AudioFrame, RTSPAudioStreamer, receive_audio_frames
66
from .base import (

src/pupil_labs/realtime_api/streaming/imu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, NamedTuple, cast
55

66
from deprecated import deprecated
7-
from pupil_labs.neon_recording.stream.imu.imu_pb2 import ImuPacket # type: ignore
7+
from pupil_labs.neon_recording.timeseries.imu.imu_pb2 import ImuPacket # type: ignore
88

99
from .base import RTSPRawStreamer
1010

0 commit comments

Comments
 (0)