Skip to content

Commit

Permalink
bump api version to 2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Oct 17, 2024
1 parent 185a007 commit cf4aba5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/src/opentrons/protocol_api/robot_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(
self._api_version = api_version

@property
@requires_version(2, 20)
@requires_version(2, 21)
def api_version(self) -> APIVersion:
return self._api_version

Expand All @@ -67,7 +67,7 @@ def hardware(self) -> HardwareManager:
# context commands.
return self._hardware

@requires_version(2, 20)
@requires_version(2, 21)
def move_to(
self,
mount: Union[Mount, str],
Expand All @@ -88,7 +88,7 @@ def move_to(
mount = validation.ensure_instrument_mount(mount)
self._core.move_to(mount, destination.point, speed)

@requires_version(2, 20)
@requires_version(2, 21)
def move_axes_to(
self,
axis_map: Union[AxisMapType, StringAxisMap],
Expand Down Expand Up @@ -118,7 +118,7 @@ def move_axes_to(
)
self._core.move_axes_to(axis_map, critical_point, speed)

@requires_version(2, 20)
@requires_version(2, 21)
def move_axes_relative(
self,
axis_map: Union[AxisMapType, StringAxisMap],
Expand Down

0 comments on commit cf4aba5

Please sign in to comment.