iqm-pulla 8.2.0__py3-none-any.whl → 9.0.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.
@@ -49,7 +49,7 @@ from iqm.pulla.utils import (
49
49
  )
50
50
  from iqm.pulse.builder import ScheduleBuilder
51
51
  from iqm.pulse.gate_implementation import GateImplementation, Locus
52
- from iqm.pulse.gates import register_implementation
52
+ from iqm.pulse.gates import register_implementation, register_operation
53
53
 
54
54
  # from iqm.pulse.gates.move import apply_move_gate_phase_corrections, validate_move_instructions
55
55
  from iqm.pulse.quantum_ops import QuantumOp
@@ -323,38 +323,36 @@ class Compiler:
323
323
  self,
324
324
  op_name: str,
325
325
  impl_name: str,
326
- implementation: type[GateImplementation],
326
+ impl_class: type[GateImplementation],
327
327
  *,
328
328
  set_as_default: bool = False,
329
329
  overwrite: bool = False,
330
- quantum_op_specs: QuantumOp | dict | None = None,
330
+ quantum_op: QuantumOp | None = None,
331
331
  ) -> None:
332
- """Adds a new implementation of a quantum operation (gate).
332
+ """Adds a new implementation for a quantum operation (gate).
333
333
 
334
334
  Refreshes the compiler after adding a new implementation.
335
335
 
336
336
  Args:
337
- op_name: The gate name for which to register a new implementation.
338
- impl_name: The "human-readable" name with which the new gate implementation will be found e.g. in settings.
339
- implementation: The python class of the new gate implementation to be added.
340
- set_as_default: Whether to set the new implementation as the default implementation for the gate.
341
- overwrite: If True, allows replacing any existing implementation of the same name.
342
- quantum_op_specs: The quantum operation this gate represents. If a QuantumOp is given, it is used as is.
337
+ op_name: The name of the quantum operation for which to register a new implementation.
338
+ impl_name: The "human-readable" name with which the new implementation will be found e.g. in settings.
339
+ impl_class: The class of the new implementation to be added.
340
+ set_as_default: Whether to set the new implementation as the default implementation for the operation.
341
+ overwrite: If True, replaces any existing implementation of the same name for the operation.
342
+ quantum_op: The quantum operation this gate represents. If a QuantumOp is given, it is used as is.
343
343
  If None is given and the same gate has been registered before, the previously registered properties are
344
- used.
345
- Otherwise, the given dict values are given to the constructor of
346
- :class:`~iqm.pulse.quantum_ops.QuantumOp`.
347
- For any missing constructor values, some defaults suitable for a 1-QB gate are used.
344
+ used. Existing operations cannot be replaced or modified.
348
345
 
349
346
  """
347
+ if quantum_op is not None:
348
+ register_operation(self.builder.op_table, quantum_op)
350
349
  register_implementation(
351
350
  operations=self.builder.op_table,
352
- gate_name=op_name,
351
+ op_name=op_name,
353
352
  impl_name=impl_name,
354
- impl_class=implementation,
353
+ impl_class=impl_class,
355
354
  set_as_default=set_as_default,
356
355
  overwrite=overwrite,
357
- quantum_op_specs=quantum_op_specs,
358
356
  )
359
357
  self._refresh()
360
358
 
iqm/cpc/compiler/dd.py CHANGED
@@ -515,7 +515,7 @@ def insert_dd_sequences(
515
515
  wait_duration = wait.duration
516
516
 
517
517
  # NOTE: Duration is always calculated using "X"
518
- prx_duration = _get_channel_segment(builder, prx.rx(math.pi), channel_name).duration
518
+ prx_duration = _get_channel_segment(builder, prx.rx(math.pi), channel_name).duration # type: ignore[attr-defined]
519
519
  calculated_ratio = wait_duration / prx_duration
520
520
 
521
521
  cpc_logger.debug(
@@ -531,7 +531,7 @@ def insert_dd_sequences(
531
531
  # each PRX gate in the sequence must be implementable using a single drive channel segment
532
532
  dd_segments = []
533
533
  for theta, phi in prx_args:
534
- seg = _get_channel_segment(builder, prx(theta, phi), channel_name)
534
+ seg = _get_channel_segment(builder, prx(theta, phi), channel_name) # type: ignore[arg-type]
535
535
  dd_segments.append(seg)
536
536
 
537
537
  cpc_logger.debug(
@@ -232,7 +232,7 @@ def _fix_implementation_and_locus(
232
232
  inst.locus = locus
233
233
  circuit_components.update(locus)
234
234
  if op.arity == 2:
235
- circuit_component_pairs.add(locus)
235
+ circuit_component_pairs.add(locus) # type: ignore[arg-type]
236
236
  circuit_gate_loci.setdefault(inst.name, {}).setdefault(inst.implementation, Counter()).update([locus])
237
237
 
238
238
  return CircuitMetrics(
@@ -274,7 +274,10 @@ def _build_readout_mappings(
274
274
 
275
275
  # find out which components have measurement data
276
276
  components_that_can_be_measured = frozenset(
277
- q for impl_loci in builder.calibration["measure"].values() for locus in impl_loci for q in locus
277
+ q
278
+ for impl_loci in builder.calibration["measure"].values()
279
+ for locus in impl_loci
280
+ for q in locus # type: ignore[union-attr]
278
281
  )
279
282
 
280
283
  # Figure out which qubits should always be measured on the QPU in the final measurement.
@@ -411,22 +414,22 @@ def _get_op_calibration_errors(calibration: OpCalibrationDataTree, ops: QuantumO
411
414
  # since OILCalibrationData can have nested dicts, we do a recursive diff
412
415
  error = diff_dicts(merge_dicts(default_cal_data, cal_data), impl.parameters, [])
413
416
  if error is not None:
414
- errors[(op_name, impl_name, locus)] = error
417
+ errors[(op_name, impl_name, locus)] = error # type: ignore[index]
415
418
  continue
416
419
 
417
420
  n_components = len(locus)
418
421
  arity = op.arity
419
422
  if arity == 0:
420
423
  if n_components != 1:
421
- errors[(op_name, impl_name, locus)] = (
424
+ errors[(op_name, impl_name, locus)] = ( # type: ignore[index]
422
425
  f"{op_name}.{impl_name} at {locus}: for zero-arity operations, "
423
426
  "calibration data must be provided for single-component loci only"
424
427
  )
425
428
  elif n_components != arity:
426
- errors[(op_name, impl_name, locus)] = (
429
+ errors[(op_name, impl_name, locus)] = ( # type: ignore[index]
427
430
  f"{op_name}.{impl_name} at {locus}: locus must have {arity} component(s)"
428
431
  )
429
- return errors
432
+ return errors # type: ignore[return-value]
430
433
 
431
434
 
432
435
  def merge_multiplexed_timeboxes(circuit_box: TimeBox) -> TimeBox:
@@ -469,7 +472,7 @@ def merge_multiplexed_timeboxes(circuit_box: TimeBox) -> TimeBox:
469
472
  if pending:
470
473
  if disjoint_boxes(pending, gate_box):
471
474
  # Pending box and new candidate have disjoint loci, merge is possible.
472
- pending = pending + gate_box.children[0]
475
+ pending = pending + gate_box.children[0] # type: ignore[assignment]
473
476
  continue
474
477
  # Pending box collides with the new candidate, so we must place it immediately and continue with
475
478
  # the new candidate.
@@ -480,7 +483,7 @@ def merge_multiplexed_timeboxes(circuit_box: TimeBox) -> TimeBox:
480
483
  if pending and not disjoint_boxes(pending, gate_box):
481
484
  placed_boxes.append(pending)
482
485
  pending = None
483
- placed_boxes.append(gate_box)
486
+ placed_boxes.append(gate_box) # type: ignore[arg-type]
484
487
 
485
488
  if pending:
486
489
  placed_boxes.append(pending)
@@ -540,7 +543,7 @@ def map_components(
540
543
  _map_components_in_instructions(
541
544
  component_mapping,
542
545
  c.instructions,
543
- device_components=device_components,
546
+ device_components=device_components, # type: ignore[arg-type]
544
547
  )
545
548
  except CircuitError as exc:
546
549
  raise CircuitError(f"Circuit {idx}: {exc}") from exc
@@ -140,7 +140,7 @@ def find_observation(
140
140
  obs_value = calibration_set.get(observation_path)
141
141
  if obs_value is None and required:
142
142
  raise CalibrationError(f"Missing calibration observation: {observation_path}")
143
- return obs_value
143
+ return obs_value # type: ignore[return-value]
144
144
 
145
145
 
146
146
  # TODO until station type records (defining the instrumentation for each chip component) are available,
@@ -363,28 +363,28 @@ def build_station_settings(
363
363
  # Then add the required static settings for circuit execution.
364
364
  for qubit in circuit_qubits:
365
365
  apply_observations(qubit, _per_qubit)
366
- _apply_static_settings(qubit, _per_qubit_static, root)
366
+ _apply_static_settings(qubit, _per_qubit_static, root) # type: ignore[arg-type]
367
367
  if qubit in flux_pulsed_qubits:
368
368
  apply_observations(qubit, _per_flux_pulsed_qubit)
369
- _apply_static_settings(qubit, _per_flux_pulsed_qubit_static, root)
369
+ _apply_static_settings(qubit, _per_flux_pulsed_qubit_static, root) # type: ignore[arg-type]
370
370
 
371
371
  for coupler in circuit_couplers:
372
372
  apply_observations(coupler, _per_coupler)
373
- _apply_static_settings(coupler, _per_coupler_static, root)
373
+ _apply_static_settings(coupler, _per_coupler_static, root) # type: ignore[arg-type]
374
374
 
375
375
  for pl in measured_probe_lines:
376
376
  apply_observations(pl, _per_probe_line)
377
- _apply_static_settings(pl, _per_probe_line_static, root)
377
+ _apply_static_settings(pl, _per_probe_line_static, root) # type: ignore[arg-type]
378
378
 
379
379
  for qubit in boundary_qubits:
380
380
  apply_observations(qubit, _per_boundary_qubit)
381
381
  _apply_static_settings(qubit, _per_boundary_qubit_static, root)
382
382
  if qubit in flux_pulsed_qubits:
383
- _apply_static_settings(qubit, _per_boundary_flux_pulsed_qubit_static, root)
383
+ _apply_static_settings(qubit, _per_boundary_flux_pulsed_qubit_static, root) # type: ignore[arg-type]
384
384
 
385
385
  for coupler in boundary_couplers:
386
386
  apply_observations(coupler, _per_boundary_coupler)
387
- _apply_static_settings(coupler, _per_boundary_coupler_static, root)
387
+ _apply_static_settings(coupler, _per_boundary_coupler_static, root) # type: ignore[arg-type]
388
388
 
389
389
  # QPU-wide options
390
390
  apply_observations("", _per_qpu)
iqm/pulla/pulla.py CHANGED
@@ -251,10 +251,10 @@ class Pulla:
251
251
  sweep_data = self._station_control.get_sweep(job_id)
252
252
  sc_result = StationControlResult(sweep_id=job_id, task_id=job_id, status=TaskStatus.PENDING)
253
253
 
254
- if sweep_data.job_status <= JobExecutorStatus.EXECUTION_STARTED:
254
+ if sweep_data.job_status <= JobExecutorStatus.EXECUTION_STARTED: # type: ignore[operator]
255
255
  # Wait in the task queue while showing a progress bar
256
256
 
257
- interrupted = self._station_control._wait_job_completion(str(job_id), get_progress_bar_callback())
257
+ interrupted = self._station_control._wait_job_completion(str(job_id), get_progress_bar_callback()) # type: ignore[attr-defined]
258
258
  if interrupted:
259
259
  raise KeyboardInterrupt
260
260
 
@@ -285,7 +285,7 @@ class Pulla:
285
285
  )
286
286
  sc_result.end_time = sweep_data.end_timestamp.isoformat() if sweep_data.end_timestamp else None
287
287
  job = self._station_control.get_job(job_id)
288
- sc_result.message = job["job_error"]
288
+ sc_result.message = job["job_error"] # type: ignore[index]
289
289
  logger.error("Submission failed! Error: %s", sc_result.message)
290
290
  return sc_result
291
291
 
@@ -296,7 +296,7 @@ class Pulla:
296
296
  )
297
297
  sc_result.end_time = sweep_data.end_timestamp.isoformat() if sweep_data.end_timestamp else None
298
298
  job = self._station_control.get_job(job_id)
299
- sc_result.message = job["job_error"]
299
+ sc_result.message = job["job_error"] # type: ignore[index]
300
300
  logger.error("Submission was revoked!")
301
301
  return sc_result
302
302
 
iqm/pulla/py.typed ADDED
File without changes
@@ -40,8 +40,8 @@ def create_static_quantum_architecture(chip_topology: ChipTopology) -> StaticQua
40
40
  # The components in each connection are already sorted, now we sort the connections
41
41
  connectivity = sorted(unsorted_connections, key=sort_key)
42
42
  return StaticQuantumArchitecture(
43
- qubits=chip_topology.qubits_sorted,
44
- computational_resonators=chip_topology.computational_resonators_sorted,
43
+ qubits=chip_topology.qubits_sorted, # type: ignore[arg-type]
44
+ computational_resonators=chip_topology.computational_resonators_sorted, # type: ignore[arg-type]
45
45
  connectivity=connectivity,
46
46
  )
47
47
 
iqm/pulla/utils.py CHANGED
@@ -86,7 +86,7 @@ def iqm_circuit_to_gate_implementation(circuit: CPC_Circuit, qubit_mapping: dict
86
86
  # TODO This method does not heed GateImplementation.locus, and will always apply the
87
87
  # gate on fixed qubits. It just pastes ``circuit`` contents, with the qubits mapped using
88
88
  # the likewise fixed mapping, into a TimeBox.
89
- registered_gates = list({instr.name for instr in circuit.instructions})
89
+ registered_gates = tuple({instr.name for instr in circuit.instructions})
90
90
 
91
91
  def __call__(self):
92
92
  boxes = []
@@ -421,7 +421,7 @@ def calset_to_cal_data_tree(calibration_set: CalibrationSet) -> OpCalibrationDat
421
421
  locus = tuple(path[3].split(LOCUS_SEPARATOR))
422
422
  locus = () if locus == ("",) else locus
423
423
  # mypy likes this
424
- set_path(tree.setdefault(path[1], {}).setdefault(path[2], {}).setdefault(locus, {}), path[4:], value)
424
+ set_path(tree.setdefault(path[1], {}).setdefault(path[2], {}).setdefault(locus, {}), path[4:], value) # type: ignore[arg-type]
425
425
  return tree
426
426
 
427
427
 
@@ -483,7 +483,7 @@ def _update_channel_props_from_calibration(
483
483
  f"No calibration value found for the center frequency or local oscillator frequency of {component}."
484
484
  )
485
485
  channel_name = channels["readout"]
486
- replacements[channel_name] = replace(channel_properties[channel_name], center_frequency=center_frequency)
486
+ replacements[channel_name] = replace(channel_properties[channel_name], center_frequency=center_frequency) # type: ignore[call-arg]
487
487
 
488
488
  return channel_properties | replacements
489
489
 
@@ -518,8 +518,8 @@ def find_circuit_boundary(
518
518
  }
519
519
  elif mode == CircuitBoundaryMode.ALL:
520
520
  # maybe safer/better: all unused locus components/couplers are considered boundary
521
- boundary_components = (device.qubits | device.computational_resonators) - circuit_components
522
- boundary_couplers = device.couplers - circuit_couplers
521
+ boundary_components = (device.qubits | device.computational_resonators) - circuit_components # type: ignore[assignment]
522
+ boundary_couplers = device.couplers - circuit_couplers # type: ignore[assignment]
523
523
  else:
524
524
  raise UnknownCircuitExecutionOptionError(f"Unknown circuit boundary mode '{str(mode)}'")
525
525
  return boundary_components, boundary_couplers
iqm/pulla/utils_qir.py CHANGED
@@ -111,7 +111,7 @@ def _gate_inst_to_str(inst: Call) -> CircuitOperation | None:
111
111
  try:
112
112
  qir_logger.debug("Processing %s with args: %s", operation, inst.args)
113
113
  params = operation_handlers[operation](inst.args)
114
- return CircuitOperation(**params)
114
+ return CircuitOperation(**params) # type: ignore[arg-type] # type: ignore[arg-type] # type: ignore[arg-type] # type: ignore[arg-type]
115
115
  except (IndexError, ValueError, AttributeError) as e:
116
116
  qir_logger.error("Error processing operation %s: %s", operation, e)
117
117
  raise ValueError(f"Error processing operation {operation}: {e}") from e
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iqm-pulla
3
- Version: 8.2.0
3
+ Version: 9.0.0
4
4
  Summary: Client library for pulse-level access to an IQM quantum computer
5
5
  Author-email: IQM Finland Oy <developers@meetiqm.com>
6
6
  License: Apache License
@@ -218,27 +218,27 @@ License-File: LICENSE.txt
218
218
  License-File: AUTHORS.rst
219
219
  Requires-Dist: iqm-exa-common <27,>=26
220
220
  Requires-Dist: iqm-station-control-client <10,>=9
221
- Requires-Dist: iqm-pulse <10,>=9
221
+ Requires-Dist: iqm-pulse <11,>=10
222
222
  Requires-Dist: iqm-data-definitions <3.0,>=2.13
223
223
  Requires-Dist: pylatexenc ==2.10
224
224
  Requires-Dist: pydantic <3.0,>=2.10.4
225
225
  Provides-Extra: notebook
226
226
  Requires-Dist: iqm-exa-common <27,>=26 ; extra == 'notebook'
227
227
  Requires-Dist: iqm-station-control-client <10,>=9 ; extra == 'notebook'
228
- Requires-Dist: iqm-pulse <10,>=9 ; extra == 'notebook'
228
+ Requires-Dist: iqm-pulse <11,>=10 ; extra == 'notebook'
229
229
  Requires-Dist: notebook <7,>=6.4.11 ; extra == 'notebook'
230
230
  Requires-Dist: matplotlib <4,>=3.6.3 ; extra == 'notebook'
231
231
  Requires-Dist: nbclient ~=0.5.10 ; extra == 'notebook'
232
232
  Provides-Extra: qir
233
233
  Requires-Dist: iqm-exa-common <27,>=26 ; extra == 'qir'
234
234
  Requires-Dist: iqm-station-control-client <10,>=9 ; extra == 'qir'
235
- Requires-Dist: iqm-pulse <10,>=9 ; extra == 'qir'
235
+ Requires-Dist: iqm-pulse <11,>=10 ; extra == 'qir'
236
236
  Requires-Dist: iqm-pyqir ==0.12.0 ; extra == 'qir'
237
237
  Requires-Dist: iqm-qiskit-qir ==0.8.0 ; extra == 'qir'
238
238
  Provides-Extra: qiskit
239
239
  Requires-Dist: iqm-exa-common <27,>=26 ; extra == 'qiskit'
240
240
  Requires-Dist: iqm-station-control-client <10,>=9 ; extra == 'qiskit'
241
- Requires-Dist: iqm-pulse <10,>=9 ; extra == 'qiskit'
241
+ Requires-Dist: iqm-pulse <11,>=10 ; extra == 'qiskit'
242
242
  Requires-Dist: iqm-client <30,>=29 ; extra == 'qiskit'
243
243
  Requires-Dist: iqm-client[qiskit] <30,>=29 ; extra == 'qiskit'
244
244
 
@@ -2,26 +2,27 @@ iqm/cpc/__init__.py,sha256=qw_SFgwld1YOYYyBE-NSticm60xx5aCAw5LJJzjou8Y,1745
2
2
  iqm/cpc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  iqm/cpc/compiler/__init__.py,sha256=ieYyHzb2IyevDm5swU--rPMsh5GdUtLrw8773Cd0ens,678
4
4
  iqm/cpc/compiler/circuit_compilation_request_handler.py,sha256=Es3VoO1kOG2XHcJ5ntmT6-aMo7GiCUYkMJGILrUjkfg,4409
5
- iqm/cpc/compiler/compiler.py,sha256=9h1BrkGsO5VcyOCuXZd2dowHj-9fgK1Zemy5IH2YbaM,20512
6
- iqm/cpc/compiler/dd.py,sha256=Ks17njg6FBK7Yg6FBe9nOXCZ9QVFDYUGCGofbabHk0U,21618
5
+ iqm/cpc/compiler/compiler.py,sha256=KsxRrpfPawZYqg3gvTYch58GXlSW8mr3p-11hejbZ_0,20383
6
+ iqm/cpc/compiler/dd.py,sha256=j4onTod24RPxRwwsM3EMBBgX4hDO0k_nW9R762AocXo,21674
7
7
  iqm/cpc/compiler/errors.py,sha256=tz-8g1QtDvCAPmAjjCYK3FoULrazkpSTmXIvyqukaT4,1949
8
- iqm/cpc/compiler/standard_stages.py,sha256=eOPvdesEr-Oe469fil6ZyPUvzaWZHNjia5Vgkqr9jT8,33601
9
- iqm/cpc/compiler/station_settings.py,sha256=VuwD2TkraCXJql59nRE3RgiQXEmor8oCor1P1WC0rkk,16717
8
+ iqm/cpc/compiler/standard_stages.py,sha256=W3CizQJDpxyz_4iHsQ-dxv7DxGxL_MMwOlIiiBjO6KY,33858
9
+ iqm/cpc/compiler/station_settings.py,sha256=l4cJYcNtMar_BoChJaUbmVfpXv7liTCeLWpSv7fAipg,16903
10
10
  iqm/cpc/interface/__init__.py,sha256=mvhNx1I9K5Sg40CwPntWj35M3Bni__23PWEw_qYaXtQ,611
11
11
  iqm/cpc/interface/compiler.py,sha256=2x3ZhL4WcyjwlSoZ3KhlmRcLxboz_ptS0M_rdX1z0c8,9861
12
12
  iqm/pulla/__init__.py,sha256=fj5Qh8R9K-z6q5g9-CySBZsG8d33nU7hCHrqIIB8_-0,901
13
13
  iqm/pulla/calibration.py,sha256=c_SNlTxXC0y-ahDY7JY53N7SofU5WUWMrNBogtdfHl4,4523
14
14
  iqm/pulla/interface.py,sha256=yymQo4REHYcUOWgPxPYq9IixS9bBZ27LXLQgJhzET58,5400
15
- iqm/pulla/pulla.py,sha256=PTSU0ft0Q0gt4k6n_gj4sznxnT9cAgd37eGeDhu9S5A,14007
16
- iqm/pulla/quantum_architecture.py,sha256=T3rrv4sg1zD6bCY5Jb6Lp8yE3E0YVTh2nK0KZttjK6s,6208
17
- iqm/pulla/utils.py,sha256=nzUg0ASAaNHtfoY3TRMEzy90dLyoX3LEIKGKybS7Gm8,24623
15
+ iqm/pulla/pulla.py,sha256=IpW6VLbpx7Qroy47sbybmNmv4jVr2fyd_zx-sdKMklA,14109
16
+ iqm/pulla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ iqm/pulla/quantum_architecture.py,sha256=mJH9e9fdkblg6LrgN7qd-Ui3Igawf-hGd2Z7ZclQg04,6260
18
+ iqm/pulla/utils.py,sha256=TTAOFhNW59VFAjnu6ZicmHXvp-GI_f66oh6IC1zFQKE,24732
18
19
  iqm/pulla/utils_cirq.py,sha256=8SBy6w7cr4AmnCgKwh7dBWwBGfGKxnoEMv9-1yfKs0A,777
19
20
  iqm/pulla/utils_dd.py,sha256=SxYAuRBgvYELKjeXpFbP4mM0xCCivDk7WUHw7oEXfMo,1695
20
- iqm/pulla/utils_qir.py,sha256=s5igks5ctvmHiaFjT3eSAYyKWTbW-rPFE6NApN66CTE,10019
21
+ iqm/pulla/utils_qir.py,sha256=VjhUFYm71LAdcx8OUgSaKwMg_zaFQfSEIuKDP0L_8fw,10123
21
22
  iqm/pulla/utils_qiskit.py,sha256=SyL9zz9xZ3mEi8t5uJVLxe3ipgNf4REZURMJQRr2E-E,10108
22
- iqm_pulla-8.2.0.dist-info/AUTHORS.rst,sha256=iCStz7WP5Jk7uMnn9jRA4ybS14X4yeUW2SsWE-OTaRk,328
23
- iqm_pulla-8.2.0.dist-info/LICENSE.txt,sha256=cCj_biRA4Q8A77vxR8AuvAf-DZ5G79yxR_3lYY6TrmA,11333
24
- iqm_pulla-8.2.0.dist-info/METADATA,sha256=VyQtf3k3VffAd6PMsEkEAsNZXA4qLjcDilBm8p4azd0,17691
25
- iqm_pulla-8.2.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
26
- iqm_pulla-8.2.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
27
- iqm_pulla-8.2.0.dist-info/RECORD,,
23
+ iqm_pulla-9.0.0.dist-info/AUTHORS.rst,sha256=iCStz7WP5Jk7uMnn9jRA4ybS14X4yeUW2SsWE-OTaRk,328
24
+ iqm_pulla-9.0.0.dist-info/LICENSE.txt,sha256=cCj_biRA4Q8A77vxR8AuvAf-DZ5G79yxR_3lYY6TrmA,11333
25
+ iqm_pulla-9.0.0.dist-info/METADATA,sha256=wsZmPqqyjRETlQueBlE2PwvYWFORj1q65YEgjpGk77c,17695
26
+ iqm_pulla-9.0.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
27
+ iqm_pulla-9.0.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
28
+ iqm_pulla-9.0.0.dist-info/RECORD,,