Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_api/protocol_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -1948,7 +1948,7 @@ def group_steps(
def create_and_start_step_group(
self, name: str, description: Optional[str] = None
) -> GroupedSteps:
"""Start a group of commands for visualization in your Pytyon protocol or in the Opentrons App.
"""Start a group of commands for visualization in your Python protocol or in the Opentrons App.
This returns a step group object, which can be closed by calling
[`end_group()`][opentrons.protocol_api._command_annotations.GroupedSteps.end_group].

Expand Down
4 changes: 2 additions & 2 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ extra_css:
- python-api.css

extra:
apiLevel: 2.28
robot_stack_version: 9.0.0
apiLevel: 2.29
robot_stack_version: 9.1.1

copyright: '© Opentrons 2026. All rights reserved. <br /> Trademarks: Opentrons®, Opentrons drop logo (Opentrons Labworks, Inc.). <br /> Registered names, trademarks, etc. used in this document, even when not specifically marked as such, are not to be considered unprotected by law.'
6 changes: 3 additions & 3 deletions docs/python-api/docs/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ This table lists the correspondence between Protocol API versions and robot soft

| API Version | Introduced in Robot Software |
|-------------|------------------------------|
| 2.29 | 9.1.0 |
| 2.28 | 9.0.0 / OT-2 26.06.0 |
| 2.29 | 9.1.1 |
| 2.28 | 9.0.0 / OT-2 26.6.0 |
| 2.27 | 8.8.0 |
| 2.26 | 8.7.0 |
| 2.25 | 8.6.0 |
Expand Down Expand Up @@ -110,7 +110,7 @@ This table lists the correspondence between Protocol API versions and robot soft
- Organize groups of commands within your Python protocols using new methods:
- [`group_steps()`][opentrons.protocol_api.ProtocolContext.group_steps]
- the paired [`create_and_start_step_group()`][opentrons.protocol_api.ProtocolContext.create_and_start_step_group] and [`end_group()`][opentrons.protocol_api._command_annotations.GroupedSteps.end_group] methods.
- Use the [`set_empty()][opentrons.protocol_api.labware.Labware.set_empty] method to label a tip rack on the deck as empty. This lets you return used tips to an empty tip rack throughout your protocol.
- Use the [`set_empty()`][opentrons.protocol_api.labware.Labware.set_empty] method to label a tip rack on the deck as empty. This lets you return used tips to an empty tip rack throughout your protocol.

### Version 2.28

Expand Down
Loading