Skip to content

Commit 3dc3b67

Browse files
fix: Temporarily pin event-model to fix CI (#1279)
1 parent b7c9c51 commit 3dc3b67

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ dependencies = [
3333
"redis",
3434
"deepdiff",
3535
"scanspec>=0.7.3",
36+
"event-model>=1.23", # Until bluesky pins it https://github.com/DiamondLightSource/dodal/issues/1278
3637
]
3738

3839
dynamic = ["version"]

src/dodal/devices/i22/nxsas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def datakey(value) -> DataKey:
3838
if isinstance(value, tuple):
3939
return {"units": value[1], **datakey(value[0])}
4040
dtype = "string"
41-
shape = []
41+
shape: list[int | None] = []
4242
match value:
4343
case bool():
4444
dtype = "boolean"

0 commit comments

Comments
 (0)