qiskit 1.2.2__cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl → 1.2.3__cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.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.
qiskit/VERSION.txt CHANGED
@@ -1 +1 @@
1
- 1.2.2
1
+ 1.2.3
Binary file
@@ -455,7 +455,7 @@ attempt to "close over" outer circuit registers, or use hidden parameters inside
455
455
  :class:`Instruction`\ s can be related to other circuits to provide a decompositions by using
456
456
  their :attr:`Instruction.definition` attribute, which provides a local, one-off decomposition. This
457
457
  can be in whatever basis set of operations is most convenient to you, as long as the definitions of
458
- all contained gates have some topological order; that is, you cannot use a gate in a definition it
458
+ all contained gates have some topological order; that is, you cannot use a gate in a definition if
459
459
  its own definition depends on the parent. If the :class:`Instruction` should be considered entirely
460
460
  opaque to optimizers, its :attr:`~Instruction.definition` can be ``None``. See
461
461
  :ref:`circuit-custom-gates` for more detail.
@@ -63,7 +63,7 @@ class RXXGate(Gate):
63
63
 
64
64
  .. math::
65
65
 
66
- R_{XX}(\theta = \pi) = i X \otimes X
66
+ R_{XX}(\theta = \pi) = -i X \otimes X
67
67
 
68
68
  .. math::
69
69
 
@@ -63,7 +63,7 @@ class RYYGate(Gate):
63
63
 
64
64
  .. math::
65
65
 
66
- R_{YY}(\theta = \pi) = i Y \otimes Y
66
+ R_{YY}(\theta = \pi) = -i Y \otimes Y
67
67
 
68
68
  .. math::
69
69
 
@@ -108,7 +108,7 @@ class RZXGate(Gate):
108
108
 
109
109
  .. math::
110
110
 
111
- R_{ZX}(\theta = \pi) = -i Z \otimes X
111
+ R_{ZX}(\theta = \pi) = -i X \otimes Z
112
112
 
113
113
  .. math::
114
114
 
qiskit/qpy/__init__.py CHANGED
@@ -116,6 +116,30 @@ and how the feature will be internally handled.
116
116
 
117
117
  .. autoexception:: QPYLoadingDeprecatedFeatureWarning
118
118
 
119
+ .. note::
120
+
121
+ With versions of Qiskit before 1.2.3, the ``use_symengine=True`` argument to :func:`.qpy.dump`
122
+ could cause problems with backwards compatibility if there were :class:`.ParameterExpression`
123
+ objects to serialize. In particular:
124
+
125
+ * When the loading version of Qiskit is 1.2.3 or greater, QPY files generated with any version
126
+ of Qiskit >= 0.46.0 can be loaded. If a version of Qiskit between 0.45.0 and 0.45.3 was used
127
+ to generate the files, and the non-default argument ``use_symengine=True`` was given to
128
+ :func:`.qpy.dump`, the file can only be read if the version of ``symengine`` used in the
129
+ generating environment was in the 0.11 or 0.13 series. However, if the environment was created
130
+ during the support window of Qiskit 0.45, it is likely that ``symengine==0.9.2`` was used.
131
+
132
+ * When the loading version of Qiskit is between 0.46.0 and 1.2.2 inclusive, the file can only be
133
+ read if the installed version of ``symengine`` in the loading environment matches the version
134
+ used in the generating environment.
135
+
136
+ To recover a QPY file that fails with ``symengine`` version-related errors during a call to
137
+ :func:`.qpy.load`, try first to use Qiskit >= 1.2.3 to load the file. If this still fails,
138
+ it is likely because Qiskit 0.45.x was used to generate the file with ``use_symengine=True``.
139
+ In this case, use Qiskit 0.45.3 with ``symengine==0.9.2`` to load the file, and then re-export
140
+ it to QPY setting ``use_symengine=False``. The resulting file can then be loaded by any later
141
+ version of Qiskit.
142
+
119
143
  QPY format version history
120
144
  --------------------------
121
145
 
@@ -20,9 +20,6 @@ from io import BytesIO
20
20
 
21
21
  import numpy as np
22
22
  import symengine as sym
23
- from symengine.lib.symengine_wrapper import ( # pylint: disable = no-name-in-module
24
- load_basic,
25
- )
26
23
 
27
24
  from qiskit.exceptions import QiskitError
28
25
  from qiskit.pulse import library, channels, instructions
@@ -106,7 +103,7 @@ def _loads_symbolic_expr(expr_bytes, use_symengine=False):
106
103
  return None
107
104
  expr_bytes = zlib.decompress(expr_bytes)
108
105
  if use_symengine:
109
- return load_basic(expr_bytes)
106
+ return common.load_symengine_payload(expr_bytes)
110
107
  else:
111
108
  from sympy import parse_expr
112
109
 
@@ -20,9 +20,6 @@ import uuid
20
20
 
21
21
  import numpy as np
22
22
  import symengine
23
- from symengine.lib.symengine_wrapper import ( # pylint: disable = no-name-in-module
24
- load_basic,
25
- )
26
23
 
27
24
 
28
25
  from qiskit.circuit import CASE_DEFAULT, Clbit, ClassicalRegister
@@ -290,7 +287,7 @@ def _read_parameter_expression_v3(file_obj, vectors, use_symengine):
290
287
 
291
288
  payload = file_obj.read(data.expr_size)
292
289
  if use_symengine:
293
- expr_ = load_basic(payload)
290
+ expr_ = common.load_symengine_payload(payload)
294
291
  else:
295
292
  from sympy.parsing.sympy_parser import parse_expr
296
293
 
qiskit/qpy/common.py CHANGED
@@ -18,7 +18,12 @@ Common functions across several serialization and deserialization modules.
18
18
  import io
19
19
  import struct
20
20
 
21
- from qiskit.qpy import formats
21
+ import symengine
22
+ from symengine.lib.symengine_wrapper import ( # pylint: disable = no-name-in-module
23
+ load_basic,
24
+ )
25
+
26
+ from qiskit.qpy import formats, exceptions
22
27
 
23
28
  QPY_VERSION = 12
24
29
  QPY_COMPATIBILITY_VERSION = 10
@@ -304,3 +309,42 @@ def mapping_from_binary(binary_data, deserializer, **kwargs):
304
309
  mapping = read_mapping(container, deserializer, **kwargs)
305
310
 
306
311
  return mapping
312
+
313
+
314
+ def load_symengine_payload(payload: bytes) -> symengine.Expr:
315
+ """Load a symengine expression from its serialized cereal payload."""
316
+ # This is a horrible hack to workaround the symengine version checking
317
+ # it's deserialization does. There were no changes to the serialization
318
+ # format between 0.11 and 0.13 but the deserializer checks that it can't
319
+ # load across a major or minor version boundary. This works around it
320
+ # by just lying about the generating version.
321
+ symengine_version = symengine.__version__.split(".")
322
+ major = payload[2]
323
+ minor = payload[3]
324
+ if int(symengine_version[1]) != minor:
325
+ if major != "0":
326
+ raise exceptions.QpyError(
327
+ "Qiskit doesn't support loading a symengine payload generated with symengine >= 1.0"
328
+ )
329
+ if minor == 9:
330
+ raise exceptions.QpyError(
331
+ "Qiskit doesn't support loading a historical QPY file with `use_symengine=True` "
332
+ "generated in an environment using symengine 0.9.0. If you need to load this file "
333
+ "you can do so with Qiskit 0.45.x or 0.46.x and re-export the QPY file using "
334
+ "`use_symengine=False`."
335
+ )
336
+ if minor not in (11, 13):
337
+ raise exceptions.QpyError(
338
+ f"Incompatible symengine version {major}.{minor} used to generate the QPY "
339
+ "payload"
340
+ )
341
+ minor_version = int(symengine_version[1])
342
+ if minor_version not in (11, 13):
343
+ raise exceptions.QpyError(
344
+ f"Incompatible installed symengine version {symengine.__version__} to load "
345
+ "this QPY payload"
346
+ )
347
+ payload = bytearray(payload)
348
+ payload[3] = minor_version
349
+ payload = bytes(payload)
350
+ return load_basic(payload)
qiskit/qpy/interface.py CHANGED
@@ -144,6 +144,17 @@ def dump(
144
144
  from the QPY format at that version will persist. This should only be used if
145
145
  compatibility with loading the payload with an older version of Qiskit is necessary.
146
146
 
147
+ .. note::
148
+
149
+ If serializing a :class:`.QuantumCircuit` or :class:`.ScheduleBlock` that contain
150
+ :class:`.ParameterExpression` objects with ``version`` set low with the intent to
151
+ load the payload using a historical release of Qiskit, it is safest to set the
152
+ ``use_symengine`` flag to ``False``. Versions of Qiskit prior to 1.2.3 cannot load
153
+ QPY files containing ``symengine``-serialized :class:`.ParameterExpression` objects
154
+ unless the version of ``symengine`` used between the loading and generating
155
+ environments matches.
156
+
157
+
147
158
  Raises:
148
159
  QpyError: When multiple data format is mixed in the output.
149
160
  TypeError: When invalid data type is input.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qiskit
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: An open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.
5
5
  Author-email: Qiskit Development Team <qiskit@us.ibm.com>
6
6
  License: Apache 2.0
@@ -36,7 +36,7 @@ Requires-Dist: dill>=0.3
36
36
  Requires-Dist: python-dateutil>=2.8.0
37
37
  Requires-Dist: stevedore>=3.0.0
38
38
  Requires-Dist: typing-extensions
39
- Requires-Dist: symengine>=0.11
39
+ Requires-Dist: symengine<0.14,>=0.11
40
40
  Provides-Extra: all
41
41
  Requires-Dist: qiskit[crosstalk-pass,csp-layout-pass,qasm3-import,visualization]; extra == "all"
42
42
  Provides-Extra: crosstalk-pass
@@ -1,10 +1,16 @@
1
+ qiskit-1.2.3.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
2
+ qiskit-1.2.3.dist-info/METADATA,sha256=uJFlGfioiX6dSgqCRxX7AUhwNo-xgtgEtapA-W2cWGo,12873
3
+ qiskit-1.2.3.dist-info/entry_points.txt,sha256=dCqiF7i6g_s6cYnXX7UUO1MM63xFFb5DCHYEYyGAeCc,3556
4
+ qiskit-1.2.3.dist-info/RECORD,,
5
+ qiskit-1.2.3.dist-info/WHEEL,sha256=VbmXg4RX7V0MvdtUhxnIZPYRnpP48HleA7I-rzn9qGg,143
6
+ qiskit-1.2.3.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
1
7
  qiskit/version.py,sha256=MiraFeJt5GQEspFyvP3qJedHen2C1e8dNEttzg0u7YU,2498
2
8
  qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
3
- qiskit/_accelerate.abi3.so,sha256=BKI9M0uDLVTIJ9puunJ2aIJGjn2XJ2jcW3BMFCLv5nE,5707180
9
+ qiskit/_accelerate.abi3.so,sha256=SIIdWSq3I0L0Gbm9dfV2akSVlBNO2as-g_zkYQrn71A,5707180
4
10
  qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
5
11
  qiskit/__init__.py,sha256=h_3PcAndCRLW2AhP-GzbxjFzpwd4RpSZ-cQg062et_w,5420
6
12
  qiskit/user_config.py,sha256=I7QCF9W2IDpleWunxDjgYGySsVUlq57gfj_137o0Dac,10109
7
- qiskit/VERSION.txt,sha256=xipcxhrEUlk1dT9ewoTAoFKksdpLOjWA3OK313ohVK4,6
13
+ qiskit/VERSION.txt,sha256=2C80rpqkG8Sgy1KaGsCJj-0J1rR5-xzETLZsNPFe6E0,6
8
14
  qiskit/transpiler/layout.py,sha256=OX1taS67SD31FuDD_1YdD-l4v6KYQw2AQU7_HTx1CIQ,28073
9
15
  qiskit/transpiler/instruction_durations.py,sha256=sXX_-jbf6I5R4cHpBBheQaTaRRa4b24Fp7E750AhrC0,11236
10
16
  qiskit/transpiler/passmanager_config.py,sha256=W0Vi73vGspwn6Z8jwUeiU3CZQdbFBbyYt1a2fgjpbko,9220
@@ -355,15 +361,15 @@ qiskit/visualization/pulse_v2/generators/chart.py,sha256=Y2na3oCE4--YbZ802VC6LhV
355
361
  qiskit/visualization/pulse_v2/generators/barrier.py,sha256=uzKh4pRj1YXnYiskoclWcYy14lUSlDgLk9u90s5U5xk,2563
356
362
  qiskit/visualization/pulse_v2/generators/frame.py,sha256=sCqwaXoY99lNclGmK4GwiBckHOXezfLVKhPz7w7tPII,13932
357
363
  qiskit/visualization/pulse_v2/generators/__init__.py,sha256=wbrSLBT-R1BeDDkCdk75lRF03evlOVX-cBioXahs2yw,1227
358
- qiskit/qpy/interface.py,sha256=LLaox9mYJDP3EUPP1tgtE8wWNgm169gqNTRmYaPJNtY,12374
364
+ qiskit/qpy/interface.py,sha256=lyxrRhdfq_zmXvx_LLC6pVivaC7c65F29jMgSth7tfA,13020
359
365
  qiskit/qpy/exceptions.py,sha256=YOwVSKR74VYOrXS5hBdln7EZ0ett0qsSQSALJDoJxwA,1847
360
366
  qiskit/qpy/type_keys.py,sha256=_2FKRgX1H6B5L6UOt3RCBzbeecNh0LPISZUr75felQg,15761
361
367
  qiskit/qpy/formats.py,sha256=88GCscjzqnU8LTZ5yf0a1BiA0_wjjWVGpC3qVkhEa_k,11269
362
- qiskit/qpy/__init__.py,sha256=M_0PFAv4dp8y6q4bP9WL3XVmRyoRsQH35MWnx9UK5zQ,56461
363
- qiskit/qpy/common.py,sha256=hsABKxwrbZNOOhN8FJjLz93xQeiXCDtgCkWDy1yJI1E,10287
364
- qiskit/qpy/binary_io/value.py,sha256=grZfIO7x-hyM-r0OISwBBNMkgqPoC3tMARxdLNlyNxg,28567
368
+ qiskit/qpy/__init__.py,sha256=J_coMXYyDz98OQVLn5Gt44HIwxTXncJcVuq3WLREEa0,58055
369
+ qiskit/qpy/common.py,sha256=LVkAX4dQhqwWZn7bLd-cHBOdYjoF1HMqh6ilbqYUZ_Q,12259
370
+ qiskit/qpy/binary_io/value.py,sha256=Ge5YN5MPo2_N8EVTH7_RwzMMJ65hRLKsjpcIKnLDKzs,28483
365
371
  qiskit/qpy/binary_io/circuits.py,sha256=ZKBrCiNdodbaLk3bv6n82ILpBR-89PAs2j-oaTFEAcY,57115
366
- qiskit/qpy/binary_io/schedules.py,sha256=hX9ySYTqkS2VtQZXD8JcGUOy0aF5NcrcoernLZXcnTg,23914
372
+ qiskit/qpy/binary_io/schedules.py,sha256=trhEhMDzTpvLAuLk85qXRByd_ZAz_CjLa5VGfRkVM4A,23830
367
373
  qiskit/qpy/binary_io/__init__.py,sha256=1RUijiS9HbWuiCER5Hkkqg1Dlutap-ZhbIwK958qK-o,1073
368
374
  qiskit/qasm/libs/qelib1.inc,sha256=2CddZ7ogjAwbU1pKvxfcp4YRGXW-1CHF47e1FFLrf2M,4820
369
375
  qiskit/qasm/libs/stdgates.inc,sha256=UvFVDcEVQUrsHh3VBiUZ5JgoqkbnsSUtgqdSnEzI6Ko,2328
@@ -451,7 +457,7 @@ qiskit/circuit/barrier.py,sha256=e9rOI-2o_ydpS4H6U5xsnuWhvRts58mMiEzsPZLqbgE,161
451
457
  qiskit/circuit/classicalregister.py,sha256=oLKotR8jFREs6i2M1K7Jrvm5rrfG7TzLgaB0-PGa040,1691
452
458
  qiskit/circuit/annotated_operation.py,sha256=9TPDzb_iFHjz1Qb-zekywdwD2FIe1J2kZM1yZxc7xR0,10487
453
459
  qiskit/circuit/delay.py,sha256=Q-GkWu_oV_gIM2t0U9Q9iew5mKjJS9LaeVPPlNik20Q,4255
454
- qiskit/circuit/__init__.py,sha256=V4djnQp8L5O6OtNAbk0ldkv6EBfb8UP3CribHMfWoV4,58957
460
+ qiskit/circuit/__init__.py,sha256=Vp2EnPcpL9feXaPOZlzGzRlbV9C-BE1KaaN9xgB2ai0,58957
455
461
  qiskit/circuit/equivalence_library.py,sha256=7f2T6c7sbDWaVQNVALNJL0olLVFZmHgA9xzcy7_FdDQ,708
456
462
  qiskit/circuit/_classical_resource_map.py,sha256=vgnkvPsdKn5czlLM3CfMn02HY8J7m1djoBr0I_sxQYk,6982
457
463
  qiskit/circuit/controlledgate.py,sha256=tvn9yyfLJcgGJOvjld42ZPQprQPSw5FTAqAZOju46WM,9755
@@ -651,21 +657,21 @@ qiskit/circuit/library/standard_gates/rz.py,sha256=IXat1HCQ5tWuagPIISpIjYhi6H42I
651
657
  qiskit/circuit/library/standard_gates/ry.py,sha256=d1ZKc6f9ZxNic8kgkbvmJHFsmfjQPLu4tuytJ-lSftA,10669
652
658
  qiskit/circuit/library/standard_gates/swap.py,sha256=5WxRZsQlXa4yzmmvJI42LUNTyOvPdB4EYD-xRlms1ro,8988
653
659
  qiskit/circuit/library/standard_gates/sx.py,sha256=VDNfp5gUEkc-UUzwoYRj8rHJ29ltLJB7-37TInNiDSU,9986
654
- qiskit/circuit/library/standard_gates/ryy.py,sha256=XY7sMl1oYORIuTzUZ7BdZiMvf8MfIBYSSDqTgyfWWqg,6864
660
+ qiskit/circuit/library/standard_gates/ryy.py,sha256=6UdgcVoO_NCOxSt2f9eto0Jd6GNUxQW_c8s01NpIbNs,6865
655
661
  qiskit/circuit/library/standard_gates/iswap.py,sha256=1M2xIlMufyjblRMJoOKhGN_pJ2k-yN1EBsygcbS-0O8,4002
656
662
  qiskit/circuit/library/standard_gates/y.py,sha256=7UuD6eXqmtrdDhOB_ruCehyiiRzsb7_amYhGxuDZys8,7888
657
663
  qiskit/circuit/library/standard_gates/u2.py,sha256=WNNCk7xbWYKjgymVLMyy5vId258R-PZSwKkgEEY36yU,4295
658
664
  qiskit/circuit/library/standard_gates/i.py,sha256=Gj-DMYCjhI9mR2aIKuNTIBAjKOMtqeFvMG8M1QMTdrE,2377
659
665
  qiskit/circuit/library/standard_gates/p.py,sha256=v1_tnP6D8XPk2B_R5yMKGMQIwSvVejvN-T86i3huL6c,14585
660
666
  qiskit/circuit/library/standard_gates/x.py,sha256=iQ_PRR_E3icz2-_akhblVRAbF4jZs7vSFpt4XKiS5Kw,55029
661
- qiskit/circuit/library/standard_gates/rxx.py,sha256=EU6e9dDOw7Jf-o33Jng-uAJVB3QqpesJLM90KJPiN9E,6685
667
+ qiskit/circuit/library/standard_gates/rxx.py,sha256=Vm5YekAUAfqNRPTOnnuIiLoduo4USLUyQiNJIptr_9o,6686
662
668
  qiskit/circuit/library/standard_gates/u3.py,sha256=2DzuObtG8QWxKe5xZjGaWxqlT7IahA7EEYBb1i9pNkA,14811
663
669
  qiskit/circuit/library/standard_gates/u.py,sha256=jc11FMYjBNiz7NxmrSlw6vPDnKJebFrlgVoPsZifKTo,15170
664
670
  qiskit/circuit/library/standard_gates/multi_control_rotation_gates.py,sha256=XmR0HhlcozZWLaTBd0z8qW3nG_injZVHijnMtLqGwaI,14931
665
671
  qiskit/circuit/library/standard_gates/__init__.py,sha256=prveyGmbnu2DS4Noryc-6rIDH45lH8wQbuQyR7j-E3M,3528
666
672
  qiskit/circuit/library/standard_gates/equivalence_library.py,sha256=Vu2OET4HdW9sjVR96KqzrUaTs0N1dsIRIor-vRSo2Ac,72337
667
673
  qiskit/circuit/library/standard_gates/t.py,sha256=JPvo0vAfV1-hBzmdSVKVrWUAHx5s3o1T6ZcK4IiDGP8,5419
668
- qiskit/circuit/library/standard_gates/rzx.py,sha256=VSd-Aax_yUNFEaB-R9OU0YvHvza7KLQX2VRA22zOQ1Y,8298
674
+ qiskit/circuit/library/standard_gates/rzx.py,sha256=dvQGdWE6mFqW9UbmxEydZgEhuhoQAanFa-aIXlaRnuU,8298
669
675
  qiskit/circuit/library/standard_gates/r.py,sha256=Yz7MOLWvyrZEj2efqtTfB1R1SWHmLKNaZ2yq2itX2Vc,4002
670
676
  qiskit/circuit/library/standard_gates/s.py,sha256=MxyzjmtR9XUUuh-jFAGypuKqqWyrisRAoXFiFgD97HA,12818
671
677
  qiskit/circuit/library/standard_gates/z.py,sha256=Xw4sRo-3I-MrVfXSv0Ka--rbmYRkgQ7DI---n0hWons,10344
@@ -812,9 +818,3 @@ qiskit/qobj/common.py,sha256=GxxPmSjpWRtGarmlBMyOQIwnerD_0WdJ42_bV_41lM8,2560
812
818
  qiskit/qobj/converters/lo_config.py,sha256=UczPUYOm820G-vm1YXjSFAlRsMI4WndnkNZCPu-ty9Q,6912
813
819
  qiskit/qobj/converters/__init__.py,sha256=Akm9I--eCKJngKWrNe47Jx9mfZhH7TPMhpVq_lICmXs,691
814
820
  qiskit/qobj/converters/pulse_instruction.py,sha256=t2Te9DlMr4jE5-5w5idNZijEdJYDUZcnChb2lSSdn28,30467
815
- qiskit-1.2.2.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
816
- qiskit-1.2.2.dist-info/METADATA,sha256=xb2Gf4mENFXtfm_ZSVF_qu_Tv6wrDQqjbnqj5OmskfM,12867
817
- qiskit-1.2.2.dist-info/entry_points.txt,sha256=dCqiF7i6g_s6cYnXX7UUO1MM63xFFb5DCHYEYyGAeCc,3556
818
- qiskit-1.2.2.dist-info/RECORD,,
819
- qiskit-1.2.2.dist-info/WHEEL,sha256=DvOVqn-9jNlk5-fIqVe-HCMUyXfAiAKdTSIZAQED-GA,144
820
- qiskit-1.2.2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.44.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp38-abi3-manylinux_2_17_i686
5
5
  Tag: cp38-abi3-manylinux2014_i686