Skip to content
Snippets Groups Projects
Commit 61837366 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Sigh. Make numpy types compatible with older numpy in the image

parent 9776b637
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class PCC(Device):
# Device Properties
# -----------------
OPC_Server_Name = device_property(
dtype=numpy.str_,
dtype=numpy.str,
mandatory=True
)
......@@ -79,7 +79,7 @@ class PCC(Device):
)
OPC_Time_Out = device_property(
dtype=numpy.uint64,
dtype=numpy.float_,
mandatory=True
)
......@@ -178,7 +178,7 @@ class PCC(Device):
)
RCU_version_R = attribute(
dtype=(numpy.str_,),
dtype=(numpy.str,),
max_dim_x=32,
)
......@@ -213,7 +213,6 @@ class PCC(Device):
dtype=numpy.float_,
)
# ---------------
# General methods
# ---------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment