cirq-core 1.4.0.dev20240529225110__py3-none-any.whl → 1.4.1__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 +31 -1
- cirq/_version_test.py +1 -1
- {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.4.1.dist-info}/METADATA +2 -7
- {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.4.1.dist-info}/RECORD +7 -7
- {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.4.1.dist-info}/WHEEL +1 -1
- {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.4.1.dist-info}/LICENSE +0 -0
- {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.4.1.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
|
@@ -1 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
# Copyright 2018 The Cirq Developers
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""Define version number here, read it from setup.py automatically,
|
|
16
|
+
and warn users that the latest version of cirq uses python 3.10+"""
|
|
17
|
+
|
|
18
|
+
import sys
|
|
19
|
+
|
|
20
|
+
if sys.version_info < (3, 10, 0): # pragma: no cover
|
|
21
|
+
raise SystemError(
|
|
22
|
+
"You installed the latest version of cirq but aren't on python 3.10+.\n"
|
|
23
|
+
'To fix this error, you need to either:\n'
|
|
24
|
+
'\n'
|
|
25
|
+
'A) Update to python 3.10 or later.\n'
|
|
26
|
+
'- OR -\n'
|
|
27
|
+
'B) Explicitly install an older deprecated-but-compatible version '
|
|
28
|
+
'of cirq (e.g. "python -m pip install cirq==1.1.*")'
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
__version__ = "1.4.1"
|
cirq/_version_test.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.1
|
|
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
|
|
@@ -8,7 +8,7 @@ Author-email: cirq-dev@googlegroups.com
|
|
|
8
8
|
License: Apache 2
|
|
9
9
|
Requires-Python: >=3.10.0
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
Requires-Dist: attrs
|
|
11
|
+
Requires-Dist: attrs >=21.3.0
|
|
12
12
|
Requires-Dist: duet >=0.2.8
|
|
13
13
|
Requires-Dist: matplotlib ~=3.0
|
|
14
14
|
Requires-Dist: networkx >=2.4
|
|
@@ -25,11 +25,6 @@ Requires-Dist: pylatex ~=1.4 ; extra == 'contrib'
|
|
|
25
25
|
Requires-Dist: quimb ~=1.7 ; extra == 'contrib'
|
|
26
26
|
Requires-Dist: opt-einsum ; extra == 'contrib'
|
|
27
27
|
|
|
28
|
-
**This is a development version of Cirq-core and may be unstable.**
|
|
29
|
-
|
|
30
|
-
**For the latest stable release of Cirq-core see**
|
|
31
|
-
`here <https://pypi.org/project/cirq-core>`__.
|
|
32
|
-
|
|
33
28
|
.. image:: https://raw.githubusercontent.com/quantumlib/Cirq/main/docs/images/Cirq_logo_color.png
|
|
34
29
|
:target: https://github.com/quantumlib/cirq
|
|
35
30
|
:alt: Cirq
|
|
@@ -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=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=e1QSdqWbXH_mZBYOnkqkbAvcLQSbiK9QYMA0K6nyukY,1188
|
|
8
|
+
cirq/_version_test.py,sha256=IvJDclqPOur7ZI60cNWT22RDmZ2Yh3oUx3aQbHOO9qI,129
|
|
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
|
|
@@ -1175,8 +1175,8 @@ cirq/work/sampler.py,sha256=JEAeQQRF3bqlO9AkOf4XbrTATDI5f5JgyM_FAUCNxao,19751
|
|
|
1175
1175
|
cirq/work/sampler_test.py,sha256=B2ZsuqGT854gQtBIAh8k0LiG9Vj5wSzcGvkxOUoTcW4,13217
|
|
1176
1176
|
cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
|
|
1177
1177
|
cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
|
|
1178
|
-
cirq_core-1.4.
|
|
1179
|
-
cirq_core-1.4.
|
|
1180
|
-
cirq_core-1.4.
|
|
1181
|
-
cirq_core-1.4.
|
|
1182
|
-
cirq_core-1.4.
|
|
1178
|
+
cirq_core-1.4.1.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1179
|
+
cirq_core-1.4.1.dist-info/METADATA,sha256=bHubE39WydLTdsB3-hk0Gb-qtJxI86LZT-4rhHJhAsw,1821
|
|
1180
|
+
cirq_core-1.4.1.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
1181
|
+
cirq_core-1.4.1.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1182
|
+
cirq_core-1.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|