isar 1.16.12__py3-none-any.whl → 1.16.14__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 isar might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: isar
3
- Version: 1.16.12
3
+ Version: 1.16.14
4
4
  Summary: Integration and Supervisory control of Autonomous Robots
5
5
  Home-page: https://github.com/equinor/isar
6
6
  Author: Equinor ASA
@@ -15,7 +15,7 @@ Classifier: Topic :: Software Development :: Libraries
15
15
  Requires-Python: >=3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: alitra >=1.1.0
18
+ Requires-Dist: alitra >=1.1.3
19
19
  Requires-Dist: azure-identity
20
20
  Requires-Dist: azure-keyvault-secrets
21
21
  Requires-Dist: azure-storage-blob
@@ -89,7 +89,7 @@ robot_interface/robot_interface.py,sha256=i2qw1V9mLO-ljtS7LiRliQ7XNmmBJIwD4NG8mD
89
89
  robot_interface/test_robot_interface.py,sha256=FV1urn7SbsMyWBIcTKjsBwAG4IsXeZ6pLHE0mA9EGGs,692
90
90
  robot_interface/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
91
  robot_interface/models/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
- robot_interface/models/exceptions/robot_exceptions.py,sha256=Ux0MQG9hP_tk5tTTgebAtMinjFm3-xbV8G-MOJRcrgU,8026
92
+ robot_interface/models/exceptions/robot_exceptions.py,sha256=olW9I6VrAsNPZ4c_4Yr9Uor_0vES84wjqWesqHqSFag,8535
93
93
  robot_interface/models/initialize/__init__.py,sha256=rz5neEDr59GDbzzI_FF0DId-C-I-50l113P-h-C_QBY,48
94
94
  robot_interface/models/initialize/initialize_params.py,sha256=2eG5Aq5bDKU6tVkaUMAoc46GERBgyaKkqv6yLupdRLc,164
95
95
  robot_interface/models/inspection/__init__.py,sha256=14wfuj4XZazrigKD7fL98khFKz-eckIpEgPcYRj40Kg,227
@@ -107,8 +107,8 @@ robot_interface/telemetry/payloads.py,sha256=9EshERifjD1u8CwjSiV3NGuj0KuXnwblQNB
107
107
  robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  robot_interface/utilities/json_service.py,sha256=nU2Q_3P9Fq9hs6F_wtUjWtHfl_g1Siy-yDhXXSKwHwg,1018
109
109
  robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
110
- isar-1.16.12.dist-info/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
111
- isar-1.16.12.dist-info/METADATA,sha256=9NGko949TOdR_Fj1CP1vo0kiqmV1_Leq96qOcOpQv7o,14752
112
- isar-1.16.12.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
113
- isar-1.16.12.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
114
- isar-1.16.12.dist-info/RECORD,,
110
+ isar-1.16.14.dist-info/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
111
+ isar-1.16.14.dist-info/METADATA,sha256=RXNRtJQxYWt3uDRBAkhqGyAINUL7jVB1bsYwkNIrezA,14752
112
+ isar-1.16.14.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
113
+ isar-1.16.14.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
114
+ isar-1.16.14.dist-info/RECORD,,
@@ -19,6 +19,7 @@ class ErrorReason(str, Enum):
19
19
  RobotTransformException: str = "robot_transform_exception"
20
20
  RobotUnknownErrorException: str = "robot_unknown_error_exception"
21
21
  RobotDisconnectedException: str = "robot_disconnected_exception"
22
+ RobotMissionNotSupportedException: str = "robot_mission_not_supported_exception"
22
23
 
23
24
 
24
25
  @dataclass
@@ -219,3 +220,14 @@ class RobotDisconnectedException(RobotException):
219
220
  )
220
221
 
221
222
  pass
223
+
224
+
225
+ # An exception which should be thrown by the robot package if the robot is given a mission type it cannot run, such as a localisation mission
226
+ class RobotMissionNotSupportedException(RobotException):
227
+ def __init__(self, error_description: str) -> None:
228
+ super().__init__(
229
+ error_reason=ErrorReason.RobotMissionNotSupportedException,
230
+ error_description=error_description,
231
+ )
232
+
233
+ pass
File without changes