Skip to content

Commit a4bceb1

Browse files
committed
Merge branch 'edge' into flex-stacker-add-tof-sensors-to-diag-script
2 parents 7379661 + 23a484e commit a4bceb1

File tree

400 files changed

+119871
-5432
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

400 files changed

+119871
-5432
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
!api/release-notes.md
1414
!app-shell/build/release-notes.md
1515
**/.yarn-cache/**
16+
protocol-designer/cypress/downloads/**
1617

1718
# components library
1819
storybook-static

.github/workflows/pd-test-build-deploy.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ jobs:
7878
if: github.event_name != 'pull_request'
7979
steps:
8080
- uses: actions/checkout@v4
81+
with:
82+
fetch-depth: 0
8183
- uses: ./.github/actions/js/setup
8284
- name: 'build PD'
8385
env:
File renamed without changes.

.storybook/preview.jsx .storybook/preview.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@ export const customViewports = {
4141
height: '700px',
4242
},
4343
},
44+
protocolDesignerBase: {
45+
// The base size for Protocol Designer. This might be the base size for web
46+
name: 'Protocol Designer Base',
47+
type: 'desktop',
48+
styles: {
49+
width: '14402px',
50+
height: '1024px',
51+
},
52+
},
4453
}
4554

4655
export const parameters = {
@@ -51,6 +60,7 @@ export const parameters = {
5160
method: 'alphabetical',
5261
order: [
5362
'Design Tokens',
63+
'Helix',
5464
'Library',
5565
'App',
5666
'ODD',

abr-testing/abr_testing/protocols/active_protocols/1_Simple Normalize Long Right.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"source": "Protocol Library",
1818
}
1919

20-
requirements = {"robotType": "Flex", "apiLevel": "2.21"}
20+
requirements = {"robotType": "Flex", "apiLevel": "2.22"}
2121

2222

2323
def add_parameters(parameters: ParameterContext) -> None:
@@ -83,7 +83,7 @@ def run(protocol: ProtocolContext) -> None:
8383
mount_pos = protocol.params.pipette_mount # type: ignore[attr-defined]
8484
all_data = protocol.params.parameters_csv.parse_as_csv() # type: ignore[attr-defined]
8585
data = all_data[1:]
86-
helpers.comment_protocol_version(protocol, "01")
86+
helpers.comment_protocol_version(protocol, "02")
8787
# DECK SETUP AND LABWARE
8888
protocol.comment("THIS IS A NO MODULE RUN")
8989
tiprack_x_1 = protocol.load_labware("opentrons_flex_96_tiprack_200ul", "D1")

abr-testing/abr_testing/protocols/active_protocols/2_BMS_PCR_Protocol.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"protocolName": "PCR Protocol with TC Auto Sealing Lid",
1515
"author": "Rami Farawi <[email protected]",
1616
}
17-
requirements = {"robotType": "Flex", "apiLevel": "2.21"}
17+
requirements = {"robotType": "Flex", "apiLevel": "2.22"}
1818

1919

2020
def add_parameters(parameters: ParameterContext) -> None:
@@ -33,7 +33,7 @@ def run(protocol: ProtocolContext) -> None:
3333
parsed_csv = protocol.params.parameters_csv.parse_as_csv() # type: ignore[attr-defined]
3434
deck_riser = protocol.params.deck_riser # type: ignore[attr-defined]
3535
deactivate_modules_bool = protocol.params.deactivate_modules # type: ignore[attr-defined]
36-
helpers.comment_protocol_version(protocol, "01")
36+
helpers.comment_protocol_version(protocol, "02")
3737

3838
rxn_vol = 50
3939
real_mode = True

abr-testing/abr_testing/protocols/active_protocols/4_Illumina DNA Enrichment.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
requirements = {
2828
"robotType": "Flex",
29-
"apiLevel": "2.21",
29+
"apiLevel": "2.22",
3030
}
3131

3232
# SCRIPT SETTINGS
@@ -75,7 +75,7 @@ def run(protocol: ProtocolContext) -> None:
7575
deck_riser = protocol.params.deck_riser # type: ignore[attr-defined]
7676
trash_lid = protocol.params.trash_lid # type: ignore[attr-defined]
7777
deactivate_modules_bool = protocol.params.deactivate_modules # type: ignore[attr-defined]
78-
helpers.comment_protocol_version(protocol, "01")
78+
helpers.comment_protocol_version(protocol, "02")
7979

8080
unused_lids: List[Labware] = []
8181
used_lids: List[Labware] = []

0 commit comments

Comments
 (0)