cirq-core 1.6.0.dev20250602235834__py3-none-any.whl → 1.6.0.dev20250603221345__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 cirq-core might be problematic. Click here for more details.
- cirq/_compat.py +2 -2
- cirq/_version.py +1 -1
- cirq/_version_test.py +1 -1
- cirq/contrib/quantum_volume/quantum_volume.py +1 -1
- cirq/experiments/random_quantum_circuit_generation.py +2 -3
- cirq/experiments/xeb_sampling.py +2 -2
- cirq/ops/classically_controlled_operation.py +7 -3
- cirq/sim/density_matrix_simulator_test.py +0 -1
- cirq/sim/simulator_base.py +4 -2
- cirq/sim/sparse_simulator_test.py +0 -1
- {cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/RECORD +15 -15
- {cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/top_level.txt +0 -0
cirq/_compat.py
CHANGED
|
@@ -469,7 +469,7 @@ def deprecate_attributes(module_name: str, deprecated_attributes: dict[str, tupl
|
|
|
469
469
|
__dict__ = module.__dict__
|
|
470
470
|
|
|
471
471
|
# Workaround for: https://github.com/python/mypy/issues/8083
|
|
472
|
-
__spec__ = _make_proxy_spec_property(module)
|
|
472
|
+
__spec__ = _make_proxy_spec_property(module)
|
|
473
473
|
|
|
474
474
|
def __getattr__(self, name):
|
|
475
475
|
if name in deprecated_attributes:
|
|
@@ -770,7 +770,7 @@ def _setup_deprecated_submodule_attribute(
|
|
|
770
770
|
__dict__ = parent_module.__dict__
|
|
771
771
|
|
|
772
772
|
# Workaround for: https://github.com/python/mypy/issues/8083
|
|
773
|
-
__spec__ = _make_proxy_spec_property(parent_module)
|
|
773
|
+
__spec__ = _make_proxy_spec_property(parent_module)
|
|
774
774
|
|
|
775
775
|
def __getattr__(self, name):
|
|
776
776
|
if name == old_child:
|
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
|
@@ -137,7 +137,7 @@ def sample_heavy_set(
|
|
|
137
137
|
# Don't do a single large measurement gate because then the key will be one
|
|
138
138
|
# large string. Instead, do a bunch of single-qubit measurement gates so we
|
|
139
139
|
# preserve the qubit keys.
|
|
140
|
-
sorted_qubits = sorted(qubits, key=key)
|
|
140
|
+
sorted_qubits = sorted(qubits, key=key) # type: ignore[arg-type]
|
|
141
141
|
circuit_copy = circuit + [cirq.measure(q) for q in sorted_qubits]
|
|
142
142
|
|
|
143
143
|
# Run the sampler to compare each output against the Heavy Set.
|
|
@@ -17,7 +17,7 @@ from __future__ import annotations
|
|
|
17
17
|
|
|
18
18
|
import dataclasses
|
|
19
19
|
import itertools
|
|
20
|
-
from typing import Any, Callable,
|
|
20
|
+
from typing import Any, Callable, Container, Iterable, Iterator, Sequence, TYPE_CHECKING
|
|
21
21
|
|
|
22
22
|
import numpy as np
|
|
23
23
|
|
|
@@ -458,8 +458,7 @@ def _pairs_from_moment(moment: cirq.Moment) -> list[QidPairT]:
|
|
|
458
458
|
for op in moment.operations:
|
|
459
459
|
if len(op.qubits) != 2:
|
|
460
460
|
raise ValueError("Layer circuit contains non-2-qubit operations.")
|
|
461
|
-
|
|
462
|
-
pairs.append(qpair)
|
|
461
|
+
pairs.append(op.qubits)
|
|
463
462
|
return pairs
|
|
464
463
|
|
|
465
464
|
|
cirq/experiments/xeb_sampling.py
CHANGED
|
@@ -341,8 +341,8 @@ def sample_2q_xeb_circuits(
|
|
|
341
341
|
# Construct truncated-with-measurement circuits to run.
|
|
342
342
|
tasks = _generate_sample_2q_xeb_tasks(zipped_circuits, cycle_depths)
|
|
343
343
|
if shuffle is not None:
|
|
344
|
-
|
|
345
|
-
|
|
344
|
+
prng = value.parse_random_state(shuffle)
|
|
345
|
+
prng.shuffle(tasks) # type: ignore[arg-type]
|
|
346
346
|
|
|
347
347
|
# Batch and run tasks.
|
|
348
348
|
records = _execute_sample_2q_xeb_tasks_in_batches(
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
from __future__ import annotations
|
|
16
16
|
|
|
17
|
-
from typing import AbstractSet, Any, Mapping, Sequence, TYPE_CHECKING
|
|
17
|
+
from typing import AbstractSet, Any, cast, Mapping, Sequence, TYPE_CHECKING
|
|
18
18
|
|
|
19
19
|
import sympy
|
|
20
20
|
|
|
@@ -212,13 +212,17 @@ class ClassicallyControlledOperation(raw_types.Operation):
|
|
|
212
212
|
conditions = [protocols.with_measurement_key_mapping(c, key_map) for c in self._conditions]
|
|
213
213
|
sub_operation = protocols.with_measurement_key_mapping(self._sub_operation, key_map)
|
|
214
214
|
sub_operation = self._sub_operation if sub_operation is NotImplemented else sub_operation
|
|
215
|
-
return
|
|
215
|
+
return cast(
|
|
216
|
+
ClassicallyControlledOperation, sub_operation.with_classical_controls(*conditions)
|
|
217
|
+
)
|
|
216
218
|
|
|
217
219
|
def _with_key_path_prefix_(self, prefix: tuple[str, ...]) -> ClassicallyControlledOperation:
|
|
218
220
|
conditions = [protocols.with_key_path_prefix(c, prefix) for c in self._conditions]
|
|
219
221
|
sub_operation = protocols.with_key_path_prefix(self._sub_operation, prefix)
|
|
220
222
|
sub_operation = self._sub_operation if sub_operation is NotImplemented else sub_operation
|
|
221
|
-
return
|
|
223
|
+
return cast(
|
|
224
|
+
ClassicallyControlledOperation, sub_operation.with_classical_controls(*conditions)
|
|
225
|
+
)
|
|
222
226
|
|
|
223
227
|
def _with_rescoped_keys_(
|
|
224
228
|
self, path: tuple[str, ...], bindable_keys: frozenset[cirq.MeasurementKey]
|
|
@@ -779,7 +779,6 @@ def test_simulate_moment_steps_qudits(dtype: type[np.complexfloating], split: bo
|
|
|
779
779
|
def test_simulate_moment_steps_empty_circuit(dtype: type[np.complexfloating], split: bool):
|
|
780
780
|
circuit = cirq.Circuit()
|
|
781
781
|
simulator = cirq.DensityMatrixSimulator(dtype=dtype, split_untangled_states=split)
|
|
782
|
-
step = None
|
|
783
782
|
for step in simulator.simulate_moment_steps(circuit):
|
|
784
783
|
pass
|
|
785
784
|
assert np.allclose(step.density_matrix(), np.array([[1]]))
|
cirq/sim/simulator_base.py
CHANGED
|
@@ -227,9 +227,10 @@ class SimulatorBase(
|
|
|
227
227
|
if self._can_be_in_run_prefix(self.noise)
|
|
228
228
|
else (resolved_circuit[0:0], resolved_circuit)
|
|
229
229
|
)
|
|
230
|
-
step_result = None
|
|
230
|
+
step_result: TStepResultBase | None = None
|
|
231
231
|
for step_result in self._core_iterator(circuit=prefix, sim_state=sim_state):
|
|
232
232
|
pass
|
|
233
|
+
assert step_result is not None
|
|
233
234
|
|
|
234
235
|
general_ops = list(general_suffix.all_operations())
|
|
235
236
|
if all(isinstance(op.gate, ops.MeasurementGate) for op in general_ops):
|
|
@@ -310,9 +311,10 @@ class SimulatorBase(
|
|
|
310
311
|
if self._can_be_in_run_prefix(self.noise)
|
|
311
312
|
else (program[0:0], program)
|
|
312
313
|
)
|
|
313
|
-
step_result = None
|
|
314
|
+
step_result: TStepResultBase | None = None
|
|
314
315
|
for step_result in self._core_iterator(circuit=prefix, sim_state=sim_state):
|
|
315
316
|
pass
|
|
317
|
+
assert step_result is not None
|
|
316
318
|
sim_state = step_result._sim_state
|
|
317
319
|
yield from super().simulate_sweep_iter(suffix, params, qubit_order, sim_state)
|
|
318
320
|
|
|
@@ -573,7 +573,6 @@ def test_simulate_moment_steps(dtype: type[np.complexfloating], split: bool):
|
|
|
573
573
|
def test_simulate_moment_steps_empty_circuit(dtype: type[np.complexfloating], split: bool):
|
|
574
574
|
circuit = cirq.Circuit()
|
|
575
575
|
simulator = cirq.Simulator(dtype=dtype, split_untangled_states=split)
|
|
576
|
-
step = None
|
|
577
576
|
for step in simulator.simulate_moment_steps(circuit):
|
|
578
577
|
pass
|
|
579
578
|
assert np.allclose(step.state_vector(copy=True), np.array([1]))
|
{cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.6.0.
|
|
3
|
+
Version: 1.6.0.dev20250603221345
|
|
4
4
|
Summary: A framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.
|
|
5
5
|
Home-page: http://github.com/quantumlib/cirq
|
|
6
6
|
Author: The Cirq Developers
|
{cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/RECORD
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
cirq/__init__.py,sha256=ATT0Sbu4iemRSpJ0xGabMJJ85kEeGJZ0TPirye6BWwM,28336
|
|
2
|
-
cirq/_compat.py,sha256=
|
|
2
|
+
cirq/_compat.py,sha256=BCAAJx19-5UXHv3HpCzewinx-b9eDs_C1GHPXPfKLIY,29478
|
|
3
3
|
cirq/_compat_test.py,sha256=ZSmenkbqEfRJpGsvutmV8vgIlfZCWj8GAVgi3t5YRso,34635
|
|
4
4
|
cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
|
|
5
5
|
cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
|
|
6
6
|
cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=qsDodKLl4FqIhWv9SguAUDm7DTsASB72VJ033Fn_Ys4,1206
|
|
8
|
+
cirq/_version_test.py,sha256=GL6enzyh170ekRbNCSyje9sEY81-b72UaQ9EkHvM2yg,155
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=S-zUVI4D_XnAxyR6z7WHDImCVmB_awJp6EStD1-CNPU,13621
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -120,7 +120,7 @@ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=IEuq2rQMU9x_NcU8MS9uRc5o-E_BoeJPo8i
|
|
|
120
120
|
cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
|
|
121
121
|
cirq/contrib/qcircuit/qcircuit_test.py,sha256=Q6SqGhxvs2JVYvmT0S4tSNxB-DBUE7bHkrhqUb1cLNo,6125
|
|
122
122
|
cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
|
|
123
|
-
cirq/contrib/quantum_volume/quantum_volume.py,sha256=
|
|
123
|
+
cirq/contrib/quantum_volume/quantum_volume.py,sha256=BEWtmHJaqcMxczgTwj-q90cfOYQbaxi4DDyMpeTpG1w,19444
|
|
124
124
|
cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=NvqrJaw0Nok2Z_71eKQQQ_xoazxIPWim8NZ14iS5CpE,12436
|
|
125
125
|
cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
|
|
126
126
|
cirq/contrib/quimb/density_matrix.py,sha256=Ja0iBv9pPGad0Y5_9R0QZFTOOSAnU6-BuewLcO6JiVQ,8606
|
|
@@ -189,7 +189,7 @@ cirq/experiments/purity_estimation.py,sha256=0F5uWh0pqNJ9RZQtNBzGeF8OUpapGFeqPWW
|
|
|
189
189
|
cirq/experiments/purity_estimation_test.py,sha256=OF3EtFBg7ZqPSBfRJK_-1ji2-xrNVEuD77lHO8Sm3Jc,959
|
|
190
190
|
cirq/experiments/qubit_characterizations.py,sha256=1ly0iYWcXVxOicsZehIOukHZQtqtNrlad44MIDdJdXU,36617
|
|
191
191
|
cirq/experiments/qubit_characterizations_test.py,sha256=A0_BjQnjeOxXlR2kC7gEwtmssTnv8kR0ljAQA4hOGoQ,9752
|
|
192
|
-
cirq/experiments/random_quantum_circuit_generation.py,sha256=
|
|
192
|
+
cirq/experiments/random_quantum_circuit_generation.py,sha256=pV6ubukLLdfPXLvJD2t979rVDCOTM32X6SB65vExeE4,28012
|
|
193
193
|
cirq/experiments/random_quantum_circuit_generation_test.py,sha256=4GSfUK2hw2r90JAO7R2zSBqjtwWi8vXuAhw-iK6quwY,16512
|
|
194
194
|
cirq/experiments/readout_confusion_matrix.py,sha256=ro3miCMr8K-EDW918PHKL_QcqrDUT-_uTXUvJ1PPzEI,20666
|
|
195
195
|
cirq/experiments/readout_confusion_matrix_test.py,sha256=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
|
|
@@ -203,7 +203,7 @@ cirq/experiments/two_qubit_xeb.py,sha256=JKv6B5iH3HXhiJQ4qG2BldVzWu1kinZNHpxJeZd
|
|
|
203
203
|
cirq/experiments/two_qubit_xeb_test.py,sha256=MSwdIOcfFy9d-GZUzz4f-2_gblleR89dPIyC8pt_AsQ,10689
|
|
204
204
|
cirq/experiments/xeb_fitting.py,sha256=SaiamG0gc36bC6ilecZwJou-taEh3REWJAwg5F47DEA,30306
|
|
205
205
|
cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
|
|
206
|
-
cirq/experiments/xeb_sampling.py,sha256=
|
|
206
|
+
cirq/experiments/xeb_sampling.py,sha256=CkWJUqRPuHmnqUdVJl9j5X22iI-fP__t8hhr3_N_5xg,14921
|
|
207
207
|
cirq/experiments/xeb_sampling_test.py,sha256=3iECmmPuBLLJqVRuhTqvewbI54WwHdsX7kcuivg0cx0,6821
|
|
208
208
|
cirq/experiments/xeb_simulation.py,sha256=qAKssRqmPvFRalM6G9ArN1rTe404WBEfWxx7vKnn5HU,5073
|
|
209
209
|
cirq/experiments/xeb_simulation_test.py,sha256=cJyaFepWIlkPeQb2vQI5W2iCTtNQlfaX0FQNmAvLC_A,5627
|
|
@@ -275,7 +275,7 @@ cirq/ops/arithmetic_operation.py,sha256=FO2ne5ZHIcUCJySgOC60UApfDtfVBaZqlrhM46f7
|
|
|
275
275
|
cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_VOPpbXH_0,4938
|
|
276
276
|
cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
|
|
277
277
|
cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
|
|
278
|
-
cirq/ops/classically_controlled_operation.py,sha256=
|
|
278
|
+
cirq/ops/classically_controlled_operation.py,sha256=hj8oShyWpOD4bmKS5CTmxNftywkCnHTFi28kku1clJM,10386
|
|
279
279
|
cirq/ops/classically_controlled_operation_test.py,sha256=YA6t7cqFAG7UDIHftZ46gmMKMv-1XxLnKYUMozJjGc4,50653
|
|
280
280
|
cirq/ops/clifford_gate.py,sha256=vdN41tYaijabnDtFFOz-4Lx1uOt7ycnY5d1iO-IdZX4,40156
|
|
281
281
|
cirq/ops/clifford_gate_test.py,sha256=63NR6oLpx9hn21-0b_YpYLk32GIsd_P0k0A_4EJxxAE,41313
|
|
@@ -923,7 +923,7 @@ cirq/sim/classical_simulator_test.py,sha256=aopFirhrKt1hy1bmWomXdKJ30zEpd0Cxug8b
|
|
|
923
923
|
cirq/sim/density_matrix_simulation_state.py,sha256=EW_iOJutp5jKJfM9gZhBjkAkD7ZLmukN3t8mP0quzLE,13968
|
|
924
924
|
cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
|
|
925
925
|
cirq/sim/density_matrix_simulator.py,sha256=ZvXfKs0IxBTtu93Eq207WA9hXXv4CUfvxyAzq3eXAEc,17490
|
|
926
|
-
cirq/sim/density_matrix_simulator_test.py,sha256=
|
|
926
|
+
cirq/sim/density_matrix_simulator_test.py,sha256=Lf58HDWNcYDeQEGMDqTiL9foyxqDn5-l4-EsQ6xSlkA,61332
|
|
927
927
|
cirq/sim/density_matrix_utils.py,sha256=W2jUIiuBve3MEECrgxUImTKw4YtaaGiscXxQEzYdViY,10273
|
|
928
928
|
cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
|
|
929
929
|
cirq/sim/mux.py,sha256=w7sdSWFtmAEmHHn5nMH4H1qBCCp5oltlteH5vs3C_ik,12451
|
|
@@ -936,11 +936,11 @@ cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5J
|
|
|
936
936
|
cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,2676
|
|
937
937
|
cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
|
|
938
938
|
cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
|
|
939
|
-
cirq/sim/simulator_base.py,sha256=
|
|
939
|
+
cirq/sim/simulator_base.py,sha256=YtP27aAGiyqNXyCK1ibKpaNvExyEzZgi-PBr-rFdHjM,18182
|
|
940
940
|
cirq/sim/simulator_base_test.py,sha256=agR_nrIS7hqY_Z_GRw_kXfYLW76LjJ6N2nW4SpM_lf4,14951
|
|
941
941
|
cirq/sim/simulator_test.py,sha256=bPcjADGo1AzA5m_zvaap38NJ6n-IGKBRSAVgFmu8-ek,18799
|
|
942
942
|
cirq/sim/sparse_simulator.py,sha256=d0chp2JPvvcc0DovfmHxPGII4b1wQBPvuh76_VQTv9I,12922
|
|
943
|
-
cirq/sim/sparse_simulator_test.py,sha256=
|
|
943
|
+
cirq/sim/sparse_simulator_test.py,sha256=7P9LEeu6359slpvRJhVW4_gCKSnxpCTQVzpkvB_s0bo,53790
|
|
944
944
|
cirq/sim/state_vector.py,sha256=D-o77aJ0tIBarPXdvLER22NXeX5mQ5EwpjKtbWRljEI,13415
|
|
945
945
|
cirq/sim/state_vector_simulation_state.py,sha256=O_WuK7xKYGhFYX4jlAoVmsggjIFgh6ZbFYhnFxTo1Pw,17506
|
|
946
946
|
cirq/sim/state_vector_simulation_state_test.py,sha256=eStINvpYZRajxJO85E-2ifQzSopQABYDG4SlSSvP4-I,9987
|
|
@@ -1220,8 +1220,8 @@ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
|
|
|
1220
1220
|
cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
|
|
1221
1221
|
cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
|
|
1222
1222
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1223
|
-
cirq_core-1.6.0.
|
|
1224
|
-
cirq_core-1.6.0.
|
|
1225
|
-
cirq_core-1.6.0.
|
|
1226
|
-
cirq_core-1.6.0.
|
|
1227
|
-
cirq_core-1.6.0.
|
|
1223
|
+
cirq_core-1.6.0.dev20250603221345.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1224
|
+
cirq_core-1.6.0.dev20250603221345.dist-info/METADATA,sha256=M3eFTRSP_T19QCV1CAfoRRebh7bMTJ7XyLGAM-gjY-Q,4857
|
|
1225
|
+
cirq_core-1.6.0.dev20250603221345.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1226
|
+
cirq_core-1.6.0.dev20250603221345.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1227
|
+
cirq_core-1.6.0.dev20250603221345.dist-info/RECORD,,
|
{cirq_core-1.6.0.dev20250602235834.dist-info → cirq_core-1.6.0.dev20250603221345.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|