cirq-core 1.5.0.dev20240807173926__py3-none-any.whl → 1.5.0.dev20240808235317__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/_version.py CHANGED
@@ -28,4 +28,4 @@ if sys.version_info < (3, 10, 0): # pragma: no cover
28
28
  'of cirq (e.g. "python -m pip install cirq==1.1.*")'
29
29
  )
30
30
 
31
- __version__ = "1.5.0.dev20240807173926"
31
+ __version__ = "1.5.0.dev20240808235317"
cirq/_version_test.py CHANGED
@@ -3,4 +3,4 @@ import cirq
3
3
 
4
4
 
5
5
  def test_version():
6
- assert cirq.__version__ == "1.5.0.dev20240807173926"
6
+ assert cirq.__version__ == "1.5.0.dev20240808235317"
@@ -870,7 +870,7 @@ def _projector_string_from_projector_dict(projector_dict, coefficient=1.0):
870
870
  return ProjectorString(dict(projector_dict), coefficient)
871
871
 
872
872
 
873
- @value.value_equality(approximate=True)
873
+ @value.value_equality(approximate=True, unhashable=True)
874
874
  class ProjectorSum:
875
875
  """List of mappings representing a sum of projector operators."""
876
876
 
@@ -46,8 +46,6 @@ _EXCLUDE_JSON_FILES = (
46
46
  "cirq/protocols/json_test_data/sympy.pi.json",
47
47
  # RigettiQCSAspenDevice does not pickle
48
48
  "cirq_rigetti/json_test_data/RigettiQCSAspenDevice.json",
49
- # TODO(#6674,pavoljuhas) - fix pickling of ProjectorSum
50
- "cirq/protocols/json_test_data/ProjectorSum.json",
51
49
  )
52
50
 
53
51
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cirq-core
3
- Version: 1.5.0.dev20240807173926
3
+ Version: 1.5.0.dev20240808235317
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
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=Qq3ZcfgD-Nb81cEppQdJqhAyrVqXKtfXZYGXT0p-Wh0,34718
4
4
  cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
5
  cirq/_import.py,sha256=p9gMHJscbtDDkfHOaulvd3Aer0pwUF5AXpL89XR8dNw,8402
6
6
  cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=jvby6efB3zbe4ahafK4kKy13_e_C0VNd6OXgl1c15K4,1206
8
- cirq/_version_test.py,sha256=r5EpZqLFuek4oLn_CnINb5NHRsLsYyE1kuF54es-zH4,147
7
+ cirq/_version.py,sha256=EP1nJeAwmQmSW8pS1Pg_Tua6jz_K6YOpxPsaOb9X8PY,1206
8
+ cirq/_version_test.py,sha256=q3YYDQXqiJdnwjv2NEiKt-39-sgV49azjzJKgsK5Fp4,147
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
10
  cirq/json_resolver_cache.py,sha256=ytePZtNZgKjOF2NiVpUTuotB-JKZmQNOFIFdvXqsxHw,13271
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
@@ -307,7 +307,7 @@ cirq/ops/identity.py,sha256=4H67nV4i85wi3HWY-k5ImC9hX9U6BjIZp61JalHpsTI,5503
307
307
  cirq/ops/identity_test.py,sha256=dGx9nzeFCoVo3SmlEbqCGJT1XyzJh-qoPl9n2gEd9WQ,7422
308
308
  cirq/ops/kraus_channel.py,sha256=tCPAEzr_GAL5vTwI43rBoiOnT04l-ebZanuuEuYWDo8,5085
309
309
  cirq/ops/kraus_channel_test.py,sha256=qH2Y9cngXzKCabd-Mq5xBYcM_wyL8c6KkrXw8kZr7Dc,4726
310
- cirq/ops/linear_combinations.py,sha256=1BynexPtrNc26McHXv3rErh6NYGzcxNqXWyWJ11ugDw,39668
310
+ cirq/ops/linear_combinations.py,sha256=vK-IKHwdIBbOEaUz92JaA3uC4WTIDgUYCOCa1zZpdkw,39685
311
311
  cirq/ops/linear_combinations_test.py,sha256=qpzRo53mJtcidYE11loKMP2b9guKMGtzrKWQ_u0jr4Y,66387
312
312
  cirq/ops/matrix_gates.py,sha256=8ARvpHWYFgwmlT99-Gxoa24i_mxKLvdj_RhoQvglKQw,9290
313
313
  cirq/ops/matrix_gates_test.py,sha256=m5rMwq_sqVvsmkc5opVr3Ikd1ERuULmSRNAvGZUg7ds,14224
@@ -399,7 +399,7 @@ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=XH6Lv9SGuYhuuSB0mi5v8Eg5
399
399
  cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=0ia7ehyGpmscjRP448dBANZKwnlbqSODdPUYRUhDEN0,3879
400
400
  cirq/protocols/has_unitary_protocol.py,sha256=inj17qr8Pz2Zofj0Lsp2o7TWlfmdU1TybtRjs1TWVow,5372
401
401
  cirq/protocols/has_unitary_protocol_test.py,sha256=IjmJ3dqvteFUUO4FLwCTokgUvYy8H2HJjLmTDzt2__Q,5610
402
- cirq/protocols/hash_from_pickle_test.py,sha256=M95CrhwfXpavflvSetxUF7Qsm8boHoki4fZy2Tdijl8,4176
402
+ cirq/protocols/hash_from_pickle_test.py,sha256=kjGb1_7Hil8egA3b_fkvA8xOJpuac0vd5dH-GtWgMN8,4061
403
403
  cirq/protocols/inverse_protocol.py,sha256=CEqtGRRj86WQyyALonRXxQrNq-fENOs_Zqrlr_BVau8,4115
404
404
  cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
405
405
  cirq/protocols/json_serialization.py,sha256=Otrrzsi74rfE_2wbK-xBUI3QzQaRnEXqsY1D_ktW4jk,24360
@@ -1182,8 +1182,8 @@ cirq/work/sampler.py,sha256=JEAeQQRF3bqlO9AkOf4XbrTATDI5f5JgyM_FAUCNxao,19751
1182
1182
  cirq/work/sampler_test.py,sha256=B2ZsuqGT854gQtBIAh8k0LiG9Vj5wSzcGvkxOUoTcW4,13217
1183
1183
  cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
1184
1184
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1185
- cirq_core-1.5.0.dev20240807173926.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1186
- cirq_core-1.5.0.dev20240807173926.dist-info/METADATA,sha256=_4_5OYVZqfwvNsyZ--WrZ69qIt6OjqM-0JKKVAsFq5c,1992
1187
- cirq_core-1.5.0.dev20240807173926.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
1188
- cirq_core-1.5.0.dev20240807173926.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1189
- cirq_core-1.5.0.dev20240807173926.dist-info/RECORD,,
1185
+ cirq_core-1.5.0.dev20240808235317.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1186
+ cirq_core-1.5.0.dev20240808235317.dist-info/METADATA,sha256=YHl6ngm8VO-9Zmnv3IMG4zhiKrOfB_6IzCja6RxikbI,1992
1187
+ cirq_core-1.5.0.dev20240808235317.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
1188
+ cirq_core-1.5.0.dev20240808235317.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1189
+ cirq_core-1.5.0.dev20240808235317.dist-info/RECORD,,