Skip to content

Commit d1b1601

Browse files
committed
chore(deps): Update dodal to 1.51.0
1 parent ff30272 commit d1b1601

5 files changed

Lines changed: 10 additions & 8 deletions

File tree

dev-requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ deepdiff==8.4.2
3232
deepmerge==2.0
3333
Deprecated==1.2.18
3434
distlib==0.3.9
35-
dls-dodal==1.46.0
35+
dls-dodal==1.51.0
3636
dnspython==2.7.0
3737
docopt==0.6.2
3838
docutils==0.21.2
@@ -105,7 +105,7 @@ opentelemetry-sdk==1.32.1
105105
opentelemetry-semantic-conventions==0.53b1
106106
opentelemetry-util-http==0.53b1
107107
ophyd==1.10.6
108-
ophyd-async==0.10.0a3
108+
ophyd-async==0.11
109109
orderly-set==5.4.1
110110
orjson==3.10.18
111111
p4p==4.2.0
@@ -146,6 +146,7 @@ python-dateutil==2.9.0.post0
146146
python-dotenv==1.1.0
147147
python-multipart==0.0.20
148148
PyYAML==6.0.2
149+
pyzmq==26.3.0
149150
questionary==2.1.0
150151
redis==6.2.0
151152
referencing==0.36.2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies = [
2424
"fastapi>=0.112.0",
2525
"uvicorn",
2626
"requests",
27-
"dls-dodal>=1.46.0",
27+
"dls-dodal>=1.51.0",
2828
"super-state-machine", # https://github.com/DiamondLightSource/blueapi/issues/553
2929
"GitPython",
3030
"event-model==1.23", # https://github.com/DiamondLightSource/blueapi/issues/684

tests/system_tests/devices.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
]
3535
},
3636
{
37-
"name": "sim",
37+
"name": "stage",
3838
"protocols": [
3939
{
4040
"name": "Readable",

tests/system_tests/plans.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"items": {
1111
"enum": [
1212
"det",
13-
"sim"
13+
"stage"
1414
],
1515
"type": "bluesky.protocols.Readable"
1616
},
@@ -895,7 +895,7 @@
895895
"items": {
896896
"enum": [
897897
"det",
898-
"sim"
898+
"stage"
899899
],
900900
"type": "bluesky.protocols.Readable"
901901
},

tests/system_tests/test_blueapi_system.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,14 +392,15 @@ def test_delete_current_environment(client: BlueapiClient):
392392
"detectors": [
393393
"det",
394394
],
395-
"spec": Line("sim.x", 0.0, 10.0, 2) * Line("sim.y", 5.0, 15.0, 3),
395+
"spec": Line("stage.x", 0.0, 10.0, 2)
396+
* Line("stage.theta", 5.0, 15.0, 3),
396397
},
397398
instrument_session="cm12345-1",
398399
),
399400
TaskRequest(
400401
name="set_absolute",
401402
params={
402-
"movable": "sim.x",
403+
"movable": "stage.x",
403404
"value": "4.0",
404405
},
405406
instrument_session="cm12345-1",

0 commit comments

Comments
 (0)