opentrons 8.6.0a9__py3-none-any.whl → 8.6.0a10__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/_version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '8.6.0a9'
32
- __version_tuple__ = version_tuple = (8, 6, 0, 'a9')
31
+ __version__ = version = '8.6.0a10'
32
+ __version_tuple__ = version_tuple = (8, 6, 0, 'a10')
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -248,7 +248,7 @@ class ModuleContext(CommandPublisher):
248
248
  ) -> Labware:
249
249
  """
250
250
  .. deprecated:: 2.0
251
- Use :py:meth:`load_labware` instead.
251
+ Use ``load_labware`` instead.
252
252
  """
253
253
  _log.warning("load_labware_by_name is deprecated. Use load_labware instead.")
254
254
  return self.load_labware(
@@ -1141,7 +1141,9 @@ class FlexStackerContext(ModuleContext):
1141
1141
 
1142
1142
  @requires_version(2, 25)
1143
1143
  def retrieve(self) -> Labware:
1144
- """Retrieve a labware from the Flex Stacker and place it on the shuttle.
1144
+ """Retrieve a labware from the Flex Stacker and move it onto the shuttle.
1145
+
1146
+ The Stacker will retrieve the bottom-most labware in the stack.
1145
1147
 
1146
1148
  :returns: The retrieved :py:class:`Labware` object. This will always be the main labware,
1147
1149
  even if the Flex Stacker contains labware on an adapter. To get the adapter object,
@@ -1159,7 +1161,10 @@ class FlexStackerContext(ModuleContext):
1159
1161
 
1160
1162
  @requires_version(2, 25)
1161
1163
  def store(self) -> None:
1162
- """Move the labware currently on the Flex Stacker shuttle into the Flex Stacker."""
1164
+ """Move a labware currently on the Flex Stacker shuttle into the Flex Stacker.
1165
+
1166
+ The labware must be the same type the Stacker is configured to store using :py:meth:`.set_stored_labware()`. If labware is currently stacked inside the module, this method moves the new labware to the bottom-most position of the stack.
1167
+ """
1163
1168
  self._core.store()
1164
1169
 
1165
1170
  def _labware_to_cores(self, labware: Sequence[Labware]) -> list[LabwareCore]:
@@ -1184,24 +1189,25 @@ class FlexStackerContext(ModuleContext):
1184
1189
  stacking_offset_z: float | None = None,
1185
1190
  ) -> list[Labware]:
1186
1191
  """Limit a list of labware instances to the number that can be stored in a Flex Stacker.
1192
+ Items will be taken from the head of the list.
1187
1193
 
1188
1194
  A Flex Stacker has a limited amount of internal space and computes the number of labware
1189
- (or labware with lids or adapters) that it can store based on the heights of the labware
1190
- and the amount they overlap when placed on top of each other. To know how many of a given
1191
- labware the Flex Stacker can store, the Flex Stacker must know what labware it is.
1195
+ (or labware with lids or adapters) that it can store based on the ``z`` heights of the labware
1196
+ and the amount they overlap when stacked. To calculate how many of a given
1197
+ labware the Stacker can store, the labware type must be specified.
1192
1198
 
1193
- You can use this function to take a list of labware and return the elements that the
1194
- stacker can currently store from it. The returned list is then guaranteed to be suitable
1199
+ Provide a list of labware to this function to return the maximum number of labware of the given type that the
1200
+ Stacker can store. The returned list is guaranteed to be suitable
1195
1201
  for passing to :py:meth:`.set_stored_labware_items`.
1196
1202
 
1197
- This function limits the list of labware based on the overall maximum number the stacker
1203
+ This function limits the list of labware based on the overall maximum number the Stacker
1198
1204
  can hold and will not change as labware is added or removed. To limit a list of labware to
1199
1205
  the amount that will currently fit in the Flex Stacker, use
1200
1206
  :py:meth:`.get_current_storable_labware_from_list`.
1201
1207
 
1202
1208
  .. note::
1203
1209
 
1204
- If a stacking offset is provided, make sure the same value is used when
1210
+ If a ``z`` stacking offset is provided, be sure to specify the same value when
1205
1211
  configuring the Flex Stacker with :py:meth:`.set_stored_labware_items`.
1206
1212
 
1207
1213
  See :py:meth:`.set_stored_labware_items` for more details on stacking offset.
@@ -1219,14 +1225,17 @@ class FlexStackerContext(ModuleContext):
1219
1225
  ) -> list[Labware]:
1220
1226
  """Limit a list of labware instances to the number that the Flex Stacker currently has space for,
1221
1227
  based on the labware that is already stored in the Flex Stacker.
1228
+ Items will be taken from the head of the list.
1222
1229
 
1223
- You can use this function to take a list of labware and return the elements that the
1224
- stacker can currently store from it. The returned list is then guaranteed to be suitable
1225
- for passing to :py:meth:`.fill`.
1230
+ A Flex Stacker has a limited amount of internal space and computes the number of labware that it can store based on the ``z`` height of the labware and the amount they overlap when stacked.
1231
+
1232
+ .. note::
1233
+ The number of elements in the returned list will change as labware is added or removed from
1234
+ the Flex Stacker. To get a list limited to the overall maximum number of labware the Flex Stacker
1235
+ can store, use :py:meth:`.get_max_storable_labware_from_list`.
1226
1236
 
1227
- The number of elements in the returned list will change as labware is added to or removed from
1228
- the Flex Stacker. To get a list limited to the overall maximum number of labware the Flex Stacker
1229
- can store, use :py:meth:`.get_max_storable_labware_from_list`.
1237
+ :param labware: A list of labware to limit. The returned list takes from the front of the provided list, and it is guaranteed to be suitable
1238
+ for passing to :py:meth:`.fill_items`.
1230
1239
  """
1231
1240
  return self._cores_to_labware(
1232
1241
  self._core.get_current_storable_labware_from_list(
@@ -1236,11 +1245,13 @@ class FlexStackerContext(ModuleContext):
1236
1245
 
1237
1246
  @requires_version(2, 25)
1238
1247
  def get_max_storable_labware(self) -> int:
1239
- """Get the number of labware that the Flex Stacker can store with its current stored labware configuration.
1248
+ """Get the maximum number of labware that the Flex Stacker can store.
1240
1249
 
1241
- You can use this function to get the total number of labware that the Flex Stacker can store. This
1242
- number is the overall maximum and will not change as labware is added or removed. To get the space
1243
- currently available in the Flex Stacker, use :py:meth:`.get_current_storable_labware`.
1250
+ Use this function to return the total number of labware that the Flex Stacker can store. A Stacker has a limited amount of internal space and calculates the total number of labware that can be stored based on the ``z`` height of the labware and the amount they overlap when stacked.
1251
+
1252
+ The total number is calculated based on the labware definition for the type of labware the Stacker is currently configured to store using :py:meth:`.set_stored_labware()`. This
1253
+ number is the overall maximum and will not change as labware is added or removed. To get the number of labware that can
1254
+ be stored in the Flex Stacker based on its current conditions, use :py:meth:`.get_current_storable_labware`.
1244
1255
  """
1245
1256
  return self._core.get_max_storable_labware()
1246
1257
 
@@ -1248,7 +1259,9 @@ class FlexStackerContext(ModuleContext):
1248
1259
  def get_current_storable_labware(self) -> int:
1249
1260
  """Get the number of labware that the Flex Stacker currently has space for.
1250
1261
 
1251
- The number will change as labware is added or removed. To get the overall maximum number of labware the
1262
+ Use this function to return the total number of labware that the Flex Stacker can store. A Stacker has a limited amount of internal space and calculates the number of labware that can be stored based on the ``z`` height of the labware and the amount they overlap when stacked.
1263
+
1264
+ The number is calculated based on the labware definition for the type of labware the Stacker is currently configured to store using :py:meth:`.set_stored_labware()`. This function returns a number based on the current storage conditions of the Stacker, and will change as labware is added or removed. To get the overall maximum number of labware the
1252
1265
  Flex Stacker can store, use :py:meth:`.get_max_storable_labware`.
1253
1266
  """
1254
1267
  return self._core.get_current_storable_labware()
@@ -1259,43 +1272,44 @@ class FlexStackerContext(ModuleContext):
1259
1272
  labware: list[Labware],
1260
1273
  stacking_offset_z: float | None,
1261
1274
  ) -> None:
1262
- """Configure a Flex Stacker by providing an initial list of stored labware objects.
1275
+ """Configure the labware the Flex Stacker will store during a protocol by providing an initial list of stored labware objects. The start of the list represents the bottom of the Stacker,
1276
+ and the end of the list represents the top of the Stacker.
1263
1277
 
1264
1278
  The kind of labware stored by the Flex Stacker will be calculated from the list of labware
1265
1279
  specified here. You can use this to store labware objects that you have already created
1266
- so that, for instance, you can set their liquid state or nicknames. There are several
1267
- restrictions on the values of the ``labware`` argument:
1268
- - ``labware`` must have at least one element
1269
- - Elements of ``labware`` will be stored along with their lid, if any, and an adapter they
1270
- rest on, if any. These must be compatible with the Flex Stacker.
1271
- - All elements of ``labware`` must be loaded :py:obj:`OFF_DECK`.
1272
- - All elements of ``labware`` must be the same kind of labware. If any of them have lids, they
1273
- must all have lids, and the lids must be the same. If any of them are on adapters, they all
1274
- must be on adapters, and the adapters must be the same.
1275
- - The number of labware objects must fit in the stacker physically. To make sure the labware
1276
- will fit, use the return value of :py:method:`.get_max_storable_labware_from_list`.
1277
-
1278
- :param labware: A list of labware to load into the stacker.
1279
- :param stacking_offset_z: Stacking offset in mm between labware units to override the
1280
+ so that, for instance, you can set their liquid state or nicknames.
1281
+
1282
+
1283
+ :param labware: A list of labware to load into the Stacker.
1284
+
1285
+ - The list must have at least one element.
1286
+ - All labware must be loaded :py:obj:`OFF_DECK`.
1287
+ - All labware must be of the same kind. If any of them have lids, they
1288
+ must all have lids, and the lids must be the same.
1289
+ If any of them are on adapters, they all
1290
+ must be on adapters, and the adapters must be the same.
1291
+ All lids and adapters must be compatible with the Stacker.
1292
+ - The number of labware objects must fit in the Stacker physically. To make sure the labware
1293
+ will fit, use the return value of :py:meth:`.get_max_storable_labware_from_list`.
1294
+
1295
+ :param stacking_offset_z: Stacking ``z`` offset in mm of stored labware. If specified, this overrides the
1280
1296
  calculated value from labware definitions.
1281
1297
 
1282
1298
  .. note::
1283
1299
 
1284
- The stacking offset is the amount of vertical overlap (in mm) between the bottomside of a
1285
- labware unit and the topside of the unit below. This offset is used to determine how many
1286
- units can fit in the stacker and calculates the Z position of the shuttle when retrieving
1287
- or storing labware. The stacking offset is calculated automatically from the labware
1288
- definitions, but you can override it by providing a value here.
1300
+ The stacking offset is the amount of vertical overlap (in mm) between the bottom side of a
1301
+ labware unit and the top side of the unit below. This offset is used to determine how many
1302
+ units can fit in the stacker and calculates the ``z`` position of the shuttle when retrieving
1303
+ or storing labware.
1289
1304
 
1290
- There are four possible stacking configurations, each with a different way of calculating
1305
+ There are four possible stacking configurations, each with a different method of calculating
1291
1306
  the stacking offset:
1292
- - Bare labware: labware (bottomside) overlaps with labware (topside)
1293
- - Labware on adapter: the adapter (bottomside) of the upper unit overlaps with labware (topside)
1294
- of the unit below.
1295
- - Labware with lid: the labware (bottomside) of the upper unit overlaps the lid (topside)
1296
- of the unit below.
1297
- - Labware with lid and adapter: the adapter (bottomside) of the upper unit overlaps the
1298
- lid (topside) of the unit below.
1307
+
1308
+ - Bare labware: labware (bottom side) overlaps with the top side of the labware below.
1309
+ - Labware on adapter: the adapter (bottom side) of the upper labware unit overlaps with the top side of the labware below.
1310
+ - Labware with lid: the labware (bottom side) of the upper unit overlaps with the lid (top side) of the unit below.
1311
+ - Labware with lid and adapter: the adapter (bottom side) of the upper unit overlaps with the
1312
+ lid (top side) of the unit below.
1299
1313
 
1300
1314
  """
1301
1315
  self._core.set_stored_labware_items(
@@ -1314,7 +1328,9 @@ class FlexStackerContext(ModuleContext):
1314
1328
  count: int | None = None,
1315
1329
  stacking_offset_z: float | None = None,
1316
1330
  ) -> None:
1317
- """Configure what kind of labware the Flex Stacker will store.
1331
+ """Configure the type and starting quantity of labware the Flex Stacker will store during a protocol. This is the only type of labware you'll be able to store in the Stacker until it's reconfigured.
1332
+
1333
+ You must use this method to load a labware stack stored inside the Stacker before you're able to ``retrieve()`` or ``store()`` additional labware.
1318
1334
 
1319
1335
  :param str load_name: A string to use for looking up a labware definition.
1320
1336
  You can find the ``load_name`` for any Opentrons-verified labware on the
@@ -1330,39 +1346,35 @@ class FlexStackerContext(ModuleContext):
1330
1346
  definition whose ``load_name`` is the same as an Opentrons-verified
1331
1347
  definition, and you want to explicitly choose one or the other.
1332
1348
  :param version: The version of the labware definition. You should normally
1333
- leave this unspecified to let ``load_labware()`` choose a version
1349
+ leave this unspecified to let the method choose a version
1334
1350
  automatically.
1335
1351
  :param adapter: An adapter to load the labware on top of. Accepts the same
1336
1352
  values as the ``load_name`` parameter of :py:meth:`.load_adapter`. The
1337
1353
  adapter will use the same namespace as the labware, and the API will
1338
1354
  choose the adapter's version automatically.
1339
1355
  :param lid: A lid to load the on top of the main labware. Accepts the same
1340
- values as the ``load_name`` parameter of :py:meth:`.load_lid_stack`. The
1356
+ values as the ``load_name`` parameter of :py:meth:`~.ProtocolContext.load_lid_stack`. The
1341
1357
  lid will use the same namespace as the labware, and the API will
1342
1358
  choose the lid's version automatically.
1343
- :param count: The number of labware that the Flex Stacker should start the protocol
1344
- storing. If not specified, this will be the maximum amount of this kind of
1359
+ :param count: The number of labware that the Flex Stacker should store. If not specified, this will be the maximum amount of this kind of
1345
1360
  labware that the Flex Stacker is capable of storing.
1346
- :param stacking_offset_z: Stacking offset in mm between labware units to override the
1347
- calculated value from labware definitions.
1361
+ :param stacking_offset_z: Stacking ``z`` offset in mm of stored labware. If specified, this overrides the
1362
+ calculated value in the labware definition.
1348
1363
 
1349
1364
  .. note::
1350
1365
 
1351
- The stacking offset is the amount of vertical overlap (in mm) between the bottomside of a
1352
- labware unit and the topside of the unit below. This offset is used to determine how many
1353
- units can fit in the stacker and calculates the Z position of the shuttle when retrieving
1354
- or storing labware. The stacking offset is calculated automatically from the labware
1355
- definitions, but you can override it by providing a value here.
1366
+ The stacking offset is the amount of vertical overlap (in mm) between the bottom side of a
1367
+ labware unit and the top side of the unit below. This offset is used to determine how many
1368
+ units can fit in the Stacker and calculates the ``z`` position of the shuttle when retrieving
1369
+ or storing labware.
1356
1370
 
1357
- There are four possible stacking configurations, each with a different way of calculating
1371
+ There are four possible stacking configurations, each with a different method of calculating
1358
1372
  the stacking offset:
1359
- - Bare labware: labware (bottomside) overlaps with labware (topside)
1360
- - Labware on adapter: the adapter (bottomside) of the upper unit overlaps with labware (topside)
1361
- of the unit below.
1362
- - Labware with lid: the labware (bottomside) of the upper unit overlaps the lid (topside)
1363
- of the unit below.
1364
- - Labware with lid and adapter: the adapter (bottomside) of the upper unit overlaps the
1365
- lid (topside) of the unit below.
1373
+
1374
+ - Bare labware: labware (bottom side) overlaps with the top side of the labware below.
1375
+ - Labware on adapter: the adapter (bottom side) of the upper labware unit overlaps with the top side of the labware below.
1376
+ - Labware with lid: the labware (bottom side) of the upper labware unit overlaps with the lid (top side) of the unit below.
1377
+ - Labware with lid and adapter: the adapter (bottom side) of the upper labware unit overlaps with the lid (top side) of the unit below.
1366
1378
 
1367
1379
  """
1368
1380
  self._core.set_stored_labware(
@@ -1381,11 +1393,13 @@ class FlexStackerContext(ModuleContext):
1381
1393
 
1382
1394
  @requires_version(2, 25)
1383
1395
  def fill(self, count: int | None = None, message: str | None = None) -> None:
1384
- """Pause the protocol to add more labware to the Flex Stacker.
1396
+ """Pause the protocol to add labware to the Flex Stacker.
1397
+
1398
+ The labware must be the same type the Stacker is configured to store using :py:meth:`.set_stored_labware()`. If no labware type has been set, the API will raise an error.
1385
1399
 
1386
- :param message: A message to display in the Opentrons App to note what kind of labware to add.
1387
1400
  :param count: The amount of labware the Flex Stacker should hold after this command is executed.
1388
1401
  If not specified, the Flex Stacker should be full after this command is executed.
1402
+ :param message: A message to display noting what kind of labware to fill the Stacker with.
1389
1403
  """
1390
1404
  self._core.fill(count, message)
1391
1405
 
@@ -1393,22 +1407,23 @@ class FlexStackerContext(ModuleContext):
1393
1407
  def fill_items(self, labware: list[Labware], message: str | None = None) -> None:
1394
1408
  """Pause the protocol to add a specific list of labware to the Flex Stacker.
1395
1409
 
1396
- The ``labware`` argument must follow certain rules:
1397
- - It should have at least one item
1398
- - Its elements should be the same kind of labware previously passed to
1399
- :py:meth:`.set_stored_labware_items` or loaded by :py:meth:`.set_stored_labware`
1400
- - Its elements should all be loaded :py:obj:`OFF_DECK`
1410
+ :param labware: The list of labware to add. The list must:
1401
1411
 
1402
- :param message: A message to display in the Opentrons App.
1403
- :param labware: The list of labware to add, following the rules above.
1412
+ - Contain at least one labware.
1413
+ - Have labware of the same kind previously passed to
1414
+ :py:meth:`.set_stored_labware_items` or loaded by :py:meth:`.set_stored_labware`.
1415
+ - All labware should be loaded :py:obj:`OFF_DECK`.
1416
+ :param message: A message to display noting the labware to fill the Stacker with.
1404
1417
  """
1405
1418
  self._core.fill_items(self._labware_to_cores(labware), message)
1406
1419
 
1407
1420
  @requires_version(2, 25)
1408
1421
  def empty(self, message: str | None = None) -> None:
1409
- """Pause the protocol to remove labware from the Flex Stacker.
1422
+ """Pause the protocol to remove all labware stored in the Flex Stacker.
1410
1423
 
1411
- :param message: A message to display in the Opentrons App to note what should be removed from
1424
+ This method sets the location of all labware currently in the stacker to :py:obj:`OFF_DECK`.
1425
+
1426
+ :param message: A message to display to note what should be removed from
1412
1427
  the Flex Stacker.
1413
1428
  """
1414
1429
  self._core.empty(
@@ -1417,9 +1432,11 @@ class FlexStackerContext(ModuleContext):
1417
1432
 
1418
1433
  @requires_version(2, 25)
1419
1434
  def get_stored_labware(self) -> list[Labware]:
1420
- """Get the list of labware currently stored inside the stacker.
1435
+ """Get the list of labware currently stored inside the Stacker.
1436
+
1437
+ This function returns a list of all labware stored in the Stacker based on the labware intially stored using :py:meth:`.set_stored_labware` and any labware added or removed during the protocol.
1421
1438
 
1422
- The first element of the list is on the bottom and will be the item retrieved by a call to
1439
+ The first element of the list occupies the bottom-most position in the labware stack and would be the labware retrieved by a call to
1423
1440
  :py:meth:`.retrieve`.
1424
1441
  """
1425
1442
  return self._cores_to_labware(self._core.get_stored_labware())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opentrons
3
- Version: 8.6.0a9
3
+ Version: 8.6.0a10
4
4
  Summary: The Opentrons API is a simple framework designed to make writing automated biology lab protocols easy.
5
5
  Project-URL: opentrons.com, https://www.opentrons.com
6
6
  Project-URL: Source Code On Github, https://github.com/Opentrons/opentrons/tree/edge/api
@@ -24,7 +24,7 @@ Requires-Dist: click<9,>=8.0.0
24
24
  Requires-Dist: importlib-metadata>=1.0; python_version < '3.8'
25
25
  Requires-Dist: jsonschema<4.18.0,>=3.0.1
26
26
  Requires-Dist: numpy<2,>=1.20.0
27
- Requires-Dist: opentrons-shared-data==8.6.0a9
27
+ Requires-Dist: opentrons-shared-data==8.6.0a10
28
28
  Requires-Dist: packaging>=21.0
29
29
  Requires-Dist: pydantic-settings<3,>=2
30
30
  Requires-Dist: pydantic<3,>=2.0.0
@@ -32,6 +32,6 @@ Requires-Dist: pyserial>=3.5
32
32
  Requires-Dist: pyusb==1.2.1
33
33
  Requires-Dist: typing-extensions<5,>=4.0.0
34
34
  Provides-Extra: flex-hardware
35
- Requires-Dist: opentrons-hardware[flex]==8.6.0a9; extra == 'flex-hardware'
35
+ Requires-Dist: opentrons-hardware[flex]==8.6.0a10; extra == 'flex-hardware'
36
36
  Provides-Extra: ot2-hardware
37
- Requires-Dist: opentrons-hardware==8.6.0a9; extra == 'ot2-hardware'
37
+ Requires-Dist: opentrons-hardware==8.6.0a10; extra == 'ot2-hardware'
@@ -1,5 +1,5 @@
1
1
  opentrons/__init__.py,sha256=TQ_Ca_zzAM3iLzAysWKkFkQHG8-imihxDPQbLCYrf-E,4533
2
- opentrons/_version.py,sha256=mcOZzafaKAqrw2Ny0k7_2YqUf1Hbmefuy0RnsrBhvmA,712
2
+ opentrons/_version.py,sha256=WOzpqMGqbeQfu1DNnQl-_lxA9A_N9iJAD333-1EKRCI,714
3
3
  opentrons/execute.py,sha256=Y88qICDiHWQjU0L4Ou7DI5OXXu7zZcdkUvNUYmZqIfc,29282
4
4
  opentrons/legacy_broker.py,sha256=XnuEBBlrHCThc31RFW2UR0tGqctqWZ-CZ9vSC4L9whU,1553
5
5
  opentrons/ordered_set.py,sha256=g-SB3qA14yxHu9zjGyc2wC7d2TUCBE6fKZlHAtbPzI8,4082
@@ -235,7 +235,7 @@ opentrons/protocol_api/deck.py,sha256=94vFceg1SC1bAGd7TvC1ZpYwnJR-VlzurEZ6jkacYe
235
235
  opentrons/protocol_api/disposal_locations.py,sha256=NRiSGmDR0LnbyEkWSOM-o64uR2fUoB1NWJG7Y7SsJSs,7920
236
236
  opentrons/protocol_api/instrument_context.py,sha256=dOg04iqYnNMJ7XnlHBX3tTGiEahc-7feIuErcevRdwY,141216
237
237
  opentrons/protocol_api/labware.py,sha256=ZP4QuGadoDp6xtyToupXVSJFnsx4NfWcskRQAH3iU4Y,61443
238
- opentrons/protocol_api/module_contexts.py,sha256=zhm2FfciAs2K73cVZ_8OwKcFKAU7VAiTOnCRnQaki_E,57712
238
+ opentrons/protocol_api/module_contexts.py,sha256=RF6T__0Y7cYoFDWLmRU2BxPEVtMshEflelCHdW7IDbM,59743
239
239
  opentrons/protocol_api/module_validation_and_errors.py,sha256=ljst-M_KK78GnyG3pyZ_6yoYkMY3HORS1QyQyWrme-U,2250
240
240
  opentrons/protocol_api/protocol_context.py,sha256=Hzgw3FbCRyd4kWmw4RZwZHJhoGZkmn7ug-Q7JZGCcqs,70298
241
241
  opentrons/protocol_api/robot_context.py,sha256=D6ZdpFX30VTtVUDHitsVjabJQXD5TxOV9_Z6sik1LvE,11891
@@ -594,8 +594,8 @@ opentrons/util/linal.py,sha256=IlKAP9HkNBBgULeSf4YVwSKHdx9jnCjSr7nvDvlRALg,5753
594
594
  opentrons/util/logging_config.py,sha256=7et4YYuQdWdq_e50U-8vFS_QyNBRgdnqPGAQJm8qrIo,9954
595
595
  opentrons/util/logging_queue_handler.py,sha256=ZsSJwy-oV8DXwpYiZisQ1PbYwmK2cOslD46AcyJ1E4I,2484
596
596
  opentrons/util/performance_helpers.py,sha256=ew7H8XD20iS6-2TJAzbQeyzStZkkE6PzHt_Adx3wbZQ,5172
597
- opentrons-8.6.0a9.dist-info/METADATA,sha256=HvG4RCoHOhItRW5W9BXLVWdA2s_99JqAaMem8veXaHo,1607
598
- opentrons-8.6.0a9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
599
- opentrons-8.6.0a9.dist-info/entry_points.txt,sha256=fTa6eGCYkvOtv0ov-KVE8LLGetgb35LQLF9x85OWPVw,106
600
- opentrons-8.6.0a9.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
601
- opentrons-8.6.0a9.dist-info/RECORD,,
597
+ opentrons-8.6.0a10.dist-info/METADATA,sha256=hjGup8Y1ej9BXaAbYLKI-_0wSxiI2BR2JNPy01YO7Sk,1611
598
+ opentrons-8.6.0a10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
599
+ opentrons-8.6.0a10.dist-info/entry_points.txt,sha256=fTa6eGCYkvOtv0ov-KVE8LLGetgb35LQLF9x85OWPVw,106
600
+ opentrons-8.6.0a10.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
601
+ opentrons-8.6.0a10.dist-info/RECORD,,