cirq-core 1.6.0.dev20250515114622__py3-none-any.whl → 1.6.0.dev20250515174529__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 +1 -1
- cirq/_version.py +6 -6
- cirq/_version_test.py +1 -1
- {cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/METADATA +2 -3
- {cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/RECORD +8 -8
- {cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/top_level.txt +0 -0
cirq/_compat.py
CHANGED
|
@@ -534,7 +534,7 @@ class DeprecatedModuleLoader(importlib.abc.Loader):
|
|
|
534
534
|
sys.modules[self.old_module_name] = sys.modules[self.new_module_name]
|
|
535
535
|
return sys.modules[self.old_module_name]
|
|
536
536
|
method(self.new_module_name)
|
|
537
|
-
# https://docs.python.org/3.
|
|
537
|
+
# https://docs.python.org/3.11/library/importlib.html#importlib.abc.Loader.load_module
|
|
538
538
|
assert self.new_module_name in sys.modules, (
|
|
539
539
|
f"Wrapped loader {self.loader} was "
|
|
540
540
|
f"expected to insert "
|
cirq/_version.py
CHANGED
|
@@ -13,19 +13,19 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
15
|
"""Define version number here, read it from setup.py automatically,
|
|
16
|
-
and warn users that the latest version of cirq uses python 3.
|
|
16
|
+
and warn users that the latest version of cirq uses python 3.11+"""
|
|
17
17
|
|
|
18
18
|
import sys
|
|
19
19
|
|
|
20
|
-
if sys.version_info < (3,
|
|
20
|
+
if sys.version_info < (3, 11, 0): # pragma: no cover
|
|
21
21
|
raise SystemError(
|
|
22
|
-
"You installed the latest version of cirq but aren't on python 3.
|
|
22
|
+
"You installed the latest version of cirq but aren't on python 3.11+.\n"
|
|
23
23
|
'To fix this error, you need to either:\n'
|
|
24
24
|
'\n'
|
|
25
|
-
'A) Update to python 3.
|
|
25
|
+
'A) Update to python 3.11 or later.\n'
|
|
26
26
|
'- OR -\n'
|
|
27
27
|
'B) Explicitly install an older deprecated-but-compatible version '
|
|
28
|
-
'of cirq (e.g. "python -m pip install cirq==1.
|
|
28
|
+
'of cirq (e.g. "python -m pip install cirq==1.5.0")'
|
|
29
29
|
)
|
|
30
30
|
|
|
31
|
-
__version__ = "1.6.0.
|
|
31
|
+
__version__ = "1.6.0.dev20250515174529"
|
cirq/_version_test.py
CHANGED
{cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.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.dev20250515174529
|
|
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
|
|
@@ -18,14 +18,13 @@ Classifier: Operating System :: MacOS :: MacOS X
|
|
|
18
18
|
Classifier: Operating System :: Microsoft :: Windows
|
|
19
19
|
Classifier: Operating System :: POSIX :: Linux
|
|
20
20
|
Classifier: Programming Language :: Python :: 3
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
24
|
Classifier: Topic :: Scientific/Engineering :: Quantum Computing
|
|
26
25
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
26
|
Classifier: Typing :: Typed
|
|
28
|
-
Requires-Python: >=3.
|
|
27
|
+
Requires-Python: >=3.11.0
|
|
29
28
|
Description-Content-Type: text/markdown
|
|
30
29
|
License-File: LICENSE
|
|
31
30
|
Requires-Dist: attrs>=21.3.0
|
{cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/RECORD
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
cirq/__init__.py,sha256=QLBOuigMYDEL12O1ZaWw0Nmw3vKY3gJ4yuGfPo4YENM,28238
|
|
2
|
-
cirq/_compat.py,sha256=
|
|
2
|
+
cirq/_compat.py,sha256=e9Bc3UY_9RIq7cQyHZthoIqFL-HwRU0WSvFyVr1xCUY,29532
|
|
3
3
|
cirq/_compat_test.py,sha256=t51ZXkEuomg1SMI871Ws-5pk68DGBsAf2TGNjVXtZ8I,34755
|
|
4
4
|
cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
|
|
5
5
|
cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
|
|
6
6
|
cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=5wPtpeCcOPMueeGMZVMlCBGMg0rqojdlIZR6OaJUF8g,1206
|
|
8
|
+
cirq/_version_test.py,sha256=A5E5ho3OpZ97fAE6ThBRFkioUoi6LOxBlXpTCyMpiiQ,155
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -1218,8 +1218,8 @@ cirq/work/sampler.py,sha256=b7O3B8bc77KQb8ReLx7qeF8owP1Qwb5_I-RwC6-M_C8,19118
|
|
|
1218
1218
|
cirq/work/sampler_test.py,sha256=TBJm3gepuOURwklJTXNdqj0thvdqKUvrZwZqdytJxNY,13313
|
|
1219
1219
|
cirq/work/zeros_sampler.py,sha256=vHCfqkXmUcPkaDuKHlY-UQ71dUHVroEtm_XW51mZpHs,2390
|
|
1220
1220
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1221
|
-
cirq_core-1.6.0.
|
|
1222
|
-
cirq_core-1.6.0.
|
|
1223
|
-
cirq_core-1.6.0.
|
|
1224
|
-
cirq_core-1.6.0.
|
|
1225
|
-
cirq_core-1.6.0.
|
|
1221
|
+
cirq_core-1.6.0.dev20250515174529.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1222
|
+
cirq_core-1.6.0.dev20250515174529.dist-info/METADATA,sha256=SgOOur4Tu2skS7Fz-woUJ7a-GtmIG458pybObZkwUUw,4857
|
|
1223
|
+
cirq_core-1.6.0.dev20250515174529.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
1224
|
+
cirq_core-1.6.0.dev20250515174529.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1225
|
+
cirq_core-1.6.0.dev20250515174529.dist-info/RECORD,,
|
{cirq_core-1.6.0.dev20250515114622.dist-info → cirq_core-1.6.0.dev20250515174529.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|