opentrons 8.4.0a1__py2.py3-none-any.whl → 8.4.0a2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of opentrons might be problematic. Click here for more details.
- opentrons/protocol_engine/labware_offset_standardization.py +1 -1
- opentrons/protocol_engine/state/frustum_helpers.py +1 -1
- opentrons/protocol_engine/types/labware.py +1 -0
- opentrons/protocol_engine/types/labware_offset_location.py +6 -3
- {opentrons-8.4.0a1.dist-info → opentrons-8.4.0a2.dist-info}/METADATA +4 -4
- {opentrons-8.4.0a1.dist-info → opentrons-8.4.0a2.dist-info}/RECORD +10 -10
- {opentrons-8.4.0a1.dist-info → opentrons-8.4.0a2.dist-info}/LICENSE +0 -0
- {opentrons-8.4.0a1.dist-info → opentrons-8.4.0a2.dist-info}/WHEEL +0 -0
- {opentrons-8.4.0a1.dist-info → opentrons-8.4.0a2.dist-info}/entry_points.txt +0 -0
- {opentrons-8.4.0a1.dist-info → opentrons-8.4.0a2.dist-info}/top_level.txt +0 -0
|
@@ -135,7 +135,7 @@ def _offset_location_sequence_to_legacy_offset_location(
|
|
|
135
135
|
)
|
|
136
136
|
(
|
|
137
137
|
cutout_id,
|
|
138
|
-
|
|
138
|
+
_cutout_fixtures,
|
|
139
139
|
) = deck_configuration_provider.get_potential_cutout_fixtures(
|
|
140
140
|
last_element.addressableAreaName, deck_definition
|
|
141
141
|
)
|
|
@@ -402,7 +402,7 @@ def _find_height_in_partial_frustum(
|
|
|
402
402
|
section_top_height, section_volume = capacity
|
|
403
403
|
if (
|
|
404
404
|
bottom_section_volume
|
|
405
|
-
|
|
405
|
+
<= target_volume
|
|
406
406
|
<= (bottom_section_volume + section_volume)
|
|
407
407
|
):
|
|
408
408
|
relative_target_volume = target_volume - bottom_section_volume
|
|
@@ -34,6 +34,7 @@ class LabwareOffset(BaseModel):
|
|
|
34
34
|
definitionUri: str = Field(..., description="The URI for the labware's definition.")
|
|
35
35
|
location: LegacyLabwareOffsetLocation = Field(
|
|
36
36
|
...,
|
|
37
|
+
deprecated=True,
|
|
37
38
|
description="Where the labware is located on the robot. Deprecated and present only for backwards compatibility; cannot represent certain locations. Use locationSequence instead.",
|
|
38
39
|
)
|
|
39
40
|
locationSequence: Optional[LabwareOffsetLocationSequence] = Field(
|
|
@@ -18,7 +18,10 @@ class OnLabwareOffsetLocationSequenceComponent(BaseModel):
|
|
|
18
18
|
kind: Literal["onLabware"] = "onLabware"
|
|
19
19
|
labwareUri: str = Field(
|
|
20
20
|
...,
|
|
21
|
-
description=
|
|
21
|
+
description=(
|
|
22
|
+
"The definition URI of another labware, probably an adapter,"
|
|
23
|
+
" that the labware will be loaded onto."
|
|
24
|
+
),
|
|
22
25
|
)
|
|
23
26
|
|
|
24
27
|
|
|
@@ -99,8 +102,8 @@ class LegacyLabwareOffsetLocation(BaseModel):
|
|
|
99
102
|
definitionUri: Optional[str] = Field(
|
|
100
103
|
None,
|
|
101
104
|
description=(
|
|
102
|
-
"The definition URI of
|
|
103
|
-
" if applicable."
|
|
105
|
+
"The definition URI of another labware, probably an adapter, that the"
|
|
106
|
+
" labware will be loaded onto, if applicable."
|
|
104
107
|
"\n\n"
|
|
105
108
|
"This can be combined with moduleModel if the labware is loaded on top of"
|
|
106
109
|
" an adapter that is loaded on a module."
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentrons
|
|
3
|
-
Version: 8.4.
|
|
3
|
+
Version: 8.4.0a2
|
|
4
4
|
Summary: The Opentrons API is a simple framework designed to make writing automated biology lab protocols easy.
|
|
5
5
|
Author: Opentrons
|
|
6
6
|
Author-email: engineering@opentrons.com
|
|
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering
|
|
22
22
|
Requires-Python: >=3.10
|
|
23
23
|
License-File: ../LICENSE
|
|
24
|
-
Requires-Dist: opentrons-shared-data (==8.4.
|
|
24
|
+
Requires-Dist: opentrons-shared-data (==8.4.0a2)
|
|
25
25
|
Requires-Dist: aionotify (==0.3.1)
|
|
26
26
|
Requires-Dist: anyio (<4.0.0,>=3.6.1)
|
|
27
27
|
Requires-Dist: jsonschema (<4.18.0,>=3.0.1)
|
|
@@ -35,9 +35,9 @@ Requires-Dist: pyusb (==1.2.1)
|
|
|
35
35
|
Requires-Dist: packaging (>=21.0)
|
|
36
36
|
Requires-Dist: importlib-metadata (>=1.0) ; python_version < "3.8"
|
|
37
37
|
Provides-Extra: flex-hardware
|
|
38
|
-
Requires-Dist: opentrons-hardware[flex] (==8.4.
|
|
38
|
+
Requires-Dist: opentrons-hardware[flex] (==8.4.0a2) ; extra == 'flex-hardware'
|
|
39
39
|
Provides-Extra: ot2-hardware
|
|
40
|
-
Requires-Dist: opentrons-hardware (==8.4.
|
|
40
|
+
Requires-Dist: opentrons-hardware (==8.4.0a2) ; extra == 'ot2-hardware'
|
|
41
41
|
|
|
42
42
|
.. _Full API Documentation: http://docs.opentrons.com
|
|
43
43
|
|
|
@@ -278,7 +278,7 @@ opentrons/protocol_engine/__init__.py,sha256=UPSk7MbidkiSH_h4V3yxMvyTePKpRr5DM9-
|
|
|
278
278
|
opentrons/protocol_engine/create_protocol_engine.py,sha256=tfDIsC7_JKlRiCXPB_8tuxRsssU6o0ViRmWbGPtX9QA,7582
|
|
279
279
|
opentrons/protocol_engine/engine_support.py,sha256=5wqk5CHudpOUCSNsalWRmBSeHaCT6bEmcYAn9P60L0w,923
|
|
280
280
|
opentrons/protocol_engine/error_recovery_policy.py,sha256=ejsIywnz9DMv_XK-mo58PynW34sSDgnziPAw2g5m9G8,2873
|
|
281
|
-
opentrons/protocol_engine/labware_offset_standardization.py,sha256=
|
|
281
|
+
opentrons/protocol_engine/labware_offset_standardization.py,sha256=nXkqW6lVhWIc0CvA10SZVQNVRF6qPh1qpp1F_KbwMXo,6836
|
|
282
282
|
opentrons/protocol_engine/plugins.py,sha256=pSEzpItf4RVO2NwoGSbDpmNtO0B0-G2W0g2sIzdyjkI,3449
|
|
283
283
|
opentrons/protocol_engine/protocol_engine.py,sha256=lM7yfRuigE6Je4NwhR9-oKS4jzXPw8NSDXNugtKEdbk,28343
|
|
284
284
|
opentrons/protocol_engine/slot_standardization.py,sha256=1YjzQSLHrVPeoTDDN9evu9kbJKCpQzLHT2-C3uINwoU,4004
|
|
@@ -449,7 +449,7 @@ opentrons/protocol_engine/state/commands.py,sha256=aoON_C5DbiIEPxOGATvwCsSG9eHsF
|
|
|
449
449
|
opentrons/protocol_engine/state/config.py,sha256=7jSGxC6Vqj1eA8fqZ2I3zjlxVXg8pxvcBYMztRIx9Mg,1515
|
|
450
450
|
opentrons/protocol_engine/state/files.py,sha256=w8xxxg8HY0RqKKEGSfHWfrjV54Gb02O3dwtisJ-9j8E,1753
|
|
451
451
|
opentrons/protocol_engine/state/fluid_stack.py,sha256=uwkf0qYk1UX5iU52xmk-e3yLPK8OG-TtMCcBqrkVFpM,5932
|
|
452
|
-
opentrons/protocol_engine/state/frustum_helpers.py,sha256=
|
|
452
|
+
opentrons/protocol_engine/state/frustum_helpers.py,sha256=ux9wCwQQXrZ9nr-KldtGTilpyW6zXdG5RfHUIUcqlTw,16822
|
|
453
453
|
opentrons/protocol_engine/state/geometry.py,sha256=EQI9dBCqjuR0Pbfp3aoi10UIO_iNoRYg6FZ0G1e4dfo,94790
|
|
454
454
|
opentrons/protocol_engine/state/labware.py,sha256=rehy7R1HIhxx3DTtTHIKxqHoBQJ_1tDhhiculMJeIy8,57556
|
|
455
455
|
opentrons/protocol_engine/state/liquid_classes.py,sha256=u_z75UYdiFAKG0yB3mr1il4T3qaS0Sotq8sL7KLODP8,2990
|
|
@@ -478,9 +478,9 @@ opentrons/protocol_engine/types/execution.py,sha256=6g_NvlF4niXjFQwDjkmTgKx-N6I8
|
|
|
478
478
|
opentrons/protocol_engine/types/hardware_passthrough.py,sha256=tpTE3XHbRjXWQqY0rgosIfcOAGHqMkOpIU3IpIXgdAA,534
|
|
479
479
|
opentrons/protocol_engine/types/instrument.py,sha256=sqiY6OKYgI0ViQ2UsuYMkL9MI6OpvdgLzC1mvclrp2M,984
|
|
480
480
|
opentrons/protocol_engine/types/instrument_sensors.py,sha256=CGcChvuxpRXVJHLZP_wd1ej3XDD9x1S9biugMAnk0tM,1449
|
|
481
|
-
opentrons/protocol_engine/types/labware.py,sha256=
|
|
481
|
+
opentrons/protocol_engine/types/labware.py,sha256=_M1-UlCLGlDDEFuXD5zKH2brnEm6lvvi9hv5sP81HOY,3922
|
|
482
482
|
opentrons/protocol_engine/types/labware_movement.py,sha256=BEZIDc-6YhU9LRACi0ozroIxuOIq-tngvrFE22uufjs,577
|
|
483
|
-
opentrons/protocol_engine/types/labware_offset_location.py,sha256=
|
|
483
|
+
opentrons/protocol_engine/types/labware_offset_location.py,sha256=gXOmIHLD1Hk6OhfhmV9Uf2HN0rIKD6syWSPfYehB9QQ,4237
|
|
484
484
|
opentrons/protocol_engine/types/labware_offset_vector.py,sha256=5Hhyv60I8KpZdUDnN--3ULURcLtJhTrVVLqiIOPtRps,1008
|
|
485
485
|
opentrons/protocol_engine/types/liquid.py,sha256=6Ec0fC0SEN3jKHYeFSwbQxdEAj5hxDPHlDcL1wXlx6k,810
|
|
486
486
|
opentrons/protocol_engine/types/liquid_class.py,sha256=SF5WS3s38S87efUqawRGSIYqjhwa4pNx7fB1xdiGHl0,2384
|
|
@@ -582,9 +582,9 @@ opentrons/util/helpers.py,sha256=3hr801bWGbxEcOFAS7f-iOhmnUhoK5qahbB8SIvaCfY,165
|
|
|
582
582
|
opentrons/util/linal.py,sha256=IlKAP9HkNBBgULeSf4YVwSKHdx9jnCjSr7nvDvlRALg,5753
|
|
583
583
|
opentrons/util/logging_config.py,sha256=UHoY7dyD6WMYNP5GKowbMxUSG_hlXeI5TaIwksR5u-U,6887
|
|
584
584
|
opentrons/util/performance_helpers.py,sha256=ew7H8XD20iS6-2TJAzbQeyzStZkkE6PzHt_Adx3wbZQ,5172
|
|
585
|
-
opentrons-8.4.
|
|
586
|
-
opentrons-8.4.
|
|
587
|
-
opentrons-8.4.
|
|
588
|
-
opentrons-8.4.
|
|
589
|
-
opentrons-8.4.
|
|
590
|
-
opentrons-8.4.
|
|
585
|
+
opentrons-8.4.0a2.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
586
|
+
opentrons-8.4.0a2.dist-info/METADATA,sha256=TuBx_GurDW920K5Rdm5rU-KrVQQYvp28TlwZIOkTEH4,5084
|
|
587
|
+
opentrons-8.4.0a2.dist-info/WHEEL,sha256=qUzzGenXXuJTzyjFah76kDVqDvnk-YDzY00svnrl84w,109
|
|
588
|
+
opentrons-8.4.0a2.dist-info/entry_points.txt,sha256=fTa6eGCYkvOtv0ov-KVE8LLGetgb35LQLF9x85OWPVw,106
|
|
589
|
+
opentrons-8.4.0a2.dist-info/top_level.txt,sha256=wk6whpbMZdBQpcK0Fg0YVfUGrAgVOFON7oQAhOMGMW8,10
|
|
590
|
+
opentrons-8.4.0a2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|