iqm-station-control-client 8.0.0__py3-none-any.whl → 8.1.0__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.
@@ -59,7 +59,7 @@ class JobData(PydanticBase):
59
59
  class JobExecutorStatus(Enum):
60
60
  """Enumeration of different states a job can be in. The ordering of these statuses is important,
61
61
  and execution logic relies on it. Thus, if a new status is added, ensure that it is slotted
62
- in at the appropriate place. See the __lt__ implementation for further details.
62
+ in at the appropriate place. See the :meth:`__lt__` implementation for further details.
63
63
  """
64
64
 
65
65
  # Received by the server
@@ -111,9 +111,33 @@ class JobExecutorStatus(Enum):
111
111
  def __lt__(self, other):
112
112
  """Enable comparison according to definition order.
113
113
 
114
- Examples:
115
- >>> JobExecutorStatus.VALIDATION_ENDED < JobExecutorStatus.COMPILATION_ENDED
114
+ :meta public:
115
+
116
+ .. doctest::
117
+
118
+ >>> JobExecutorStatus.RECEIVED < JobExecutorStatus.VALIDATION_STARTED
116
119
  True
120
+ >>> sorted(list(JobExecutorStatus.__members__))
121
+ [
122
+ JobExecutorStatus.RECEIVED,
123
+ JobExecutorStatus.VALIDATION_STARTED,
124
+ JobExecutorStatus.VALIDATION_ENDED,
125
+ JobExecutorStatus.FETCH_CALIBRATION_STARTED,
126
+ JobExecutorStatus.FETCH_CALIBRATION_ENDED,
127
+ JobExecutorStatus.COMPILATION_STARTED,
128
+ JobExecutorStatus.COMPILATION_ENDED,
129
+ JobExecutorStatus.SAVE_SWEEP_METADATA_STARTED,
130
+ JobExecutorStatus.SAVE_SWEEP_METADATA_ENDED,
131
+ JobExecutorStatus.PENDING_EXECUTION,
132
+ JobExecutorStatus.EXECUTION_STARTED,
133
+ JobExecutorStatus.EXECUTION_ENDED,
134
+ JobExecutorStatus.POST_PROCESSING_PENDING,
135
+ JobExecutorStatus.POST_PROCESSING_STARTED,
136
+ JobExecutorStatus.POST_PROCESSING_ENDED,
137
+ JobExecutorStatus.READY,
138
+ JobExecutorStatus.FAILED,
139
+ JobExecutorStatus.ABORTED,
140
+ ]
117
141
 
118
142
  """
119
143
  if isinstance(other, str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iqm-station-control-client
3
- Version: 8.0.0
3
+ Version: 8.1.0
4
4
  Summary: Python client for communicating with Station Control Service
5
5
  Author-email: IQM Finland Oy <info@meetiqm.com>
6
6
  License: Apache License
@@ -39,7 +39,7 @@ iqm/station_control/interface/list_with_meta.py,sha256=GAXIDEXKeua6-2FoQ_O1tkhx-
39
39
  iqm/station_control/interface/pydantic_base.py,sha256=MVzcsH7wG1DON-qTw6KLpUDay7_b_9CDQgymVzg9HwI,1303
40
40
  iqm/station_control/interface/models/__init__.py,sha256=NpUt2IcWVVAiYZTdl6uOMk0IVWmLgJrC9D9irIZvF4c,1595
41
41
  iqm/station_control/interface/models/dut.py,sha256=dd1SpcsBe4P057jvcPqv39SjzekewwP07hThFe5ulNA,1216
42
- iqm/station_control/interface/models/jobs.py,sha256=xPf7VnYMRKk5NqFXd7E8dIBAb0HwoW8AdAEQABDaTFI,4029
42
+ iqm/station_control/interface/models/jobs.py,sha256=4CVVGMsUOm_UO4w7UH-Shq7cbZe_5MkhGDpoBwHoHkc,5105
43
43
  iqm/station_control/interface/models/monitor.py,sha256=ItlgxtBup1hHg64uKeMKiFE7MaRRqSYdVRttsFD_XeU,1352
44
44
  iqm/station_control/interface/models/observation.py,sha256=Jce4lIsUtHRIFT3nr-cbKvh3dbR2Y_yM5x0yyvUdjF8,3261
45
45
  iqm/station_control/interface/models/observation_set.py,sha256=Ko2o3-9I38NfjNF2IQPcwfbwpkTQ3PIU7fUiSaDleX8,3031
@@ -47,8 +47,8 @@ iqm/station_control/interface/models/run.py,sha256=m-iE3QMPQUOF7bsw8JCAM1Bd6bDVh
47
47
  iqm/station_control/interface/models/sequence.py,sha256=uOqMwF1x-vW6UHs2WnPD3PsuSgV3a8OTAsgn_4UENLw,2723
48
48
  iqm/station_control/interface/models/sweep.py,sha256=uzpbQ_nky7UxNE4c15U4oDN96f_-SgPDNVK9Sjdan3Q,2509
49
49
  iqm/station_control/interface/models/type_aliases.py,sha256=3LB9viZVi8osavY5kKF8TH1crayG7-MLjgBqXDCqL2s,1018
50
- iqm_station_control_client-8.0.0.dist-info/LICENSE.txt,sha256=R6Q7eUrLyoCQgWYorQ8WJmVmWKYU3dxA3jYUp0wwQAw,11332
51
- iqm_station_control_client-8.0.0.dist-info/METADATA,sha256=q1e_eFVPPGjaV3ewVOvj72rJo4GeUKQY1me-zmLgUug,14009
52
- iqm_station_control_client-8.0.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
53
- iqm_station_control_client-8.0.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
54
- iqm_station_control_client-8.0.0.dist-info/RECORD,,
50
+ iqm_station_control_client-8.1.0.dist-info/LICENSE.txt,sha256=R6Q7eUrLyoCQgWYorQ8WJmVmWKYU3dxA3jYUp0wwQAw,11332
51
+ iqm_station_control_client-8.1.0.dist-info/METADATA,sha256=JIak37YrbVnuaupwBxYbRSn4Mc6nCfEmO5rawNnnlQI,14009
52
+ iqm_station_control_client-8.1.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
53
+ iqm_station_control_client-8.1.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
54
+ iqm_station_control_client-8.1.0.dist-info/RECORD,,