This repository was archived by the owner on Aug 19, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +50
-4
lines changed Expand file tree Collapse file tree 4 files changed +50
-4
lines changed Original file line number Diff line number Diff line change 48
48
# The short X.Y version
49
49
version = ''
50
50
# The full version, including alpha/beta/rc tags
51
- release = '0.15 .0'
51
+ release = '0.16 .0'
52
52
53
53
# -- General configuration ---------------------------------------------------
54
54
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Qiskit consists of four foundational elements:
50
50
Qiskit Aer <apidoc/qiskit_aer >
51
51
Qiskit Ignis <apidoc_legacy/ignis/ignis >
52
52
Qiskit Aqua <apidoc/index >
53
- Qiskit IBM Q Provider <apidoc/ibmq >
53
+ Qiskit IBM Quantum Provider <apidoc/ibmq-provider >
54
54
55
55
.. Hiding - Indices and tables
56
56
:ref:`genindex`
Original file line number Diff line number Diff line change @@ -21,6 +21,52 @@ This table tracks the meta-package versions and the version of each Qiskit eleme
21
21
Notable Changes
22
22
###############
23
23
24
+ *************
25
+ Qiskit 0.16.0
26
+ *************
27
+
28
+ Terra 0.12.0
29
+ ============
30
+
31
+ No Change
32
+
33
+ Aer 0.4.0
34
+ =========
35
+
36
+ No Change
37
+
38
+ Ignis 0.2.0
39
+ ===========
40
+
41
+ No Change
42
+
43
+ Aqua 0.6.4
44
+ ==========
45
+
46
+ No Change
47
+
48
+ IBM Q Provider 0.5.0
49
+ ====================
50
+
51
+ New Features
52
+ ------------
53
+
54
+ - Some of the visualization and Jupyter tools, including gate/error map and
55
+ backend information, have been moved from ``qiskit-terra `` to ``qiskit-ibmq-provider ``.
56
+ They are now under the :mod: `qiskit.providers.ibmq.jupyter ` and
57
+ :mod: `qiskit.providers.ibmq.visualization `. In addition, you can now
58
+ use ``%iqx_dashboard `` to get a dashboard that provides both job and
59
+ backend information.
60
+
61
+ Changed
62
+ -------
63
+
64
+ - JSON schema validation is no longer run by default on Qobj objects passed
65
+ to :meth: `qiskit.providers.ibmq.IBMQBackend.run `. This significantly speeds
66
+ up the execution of the `run() ` method. Qobj objects are still validated on the
67
+ server side, and invalid Qobjs will continue to raise exceptions. To force local
68
+ validation, set ``validate_qobj=True `` when you invoke ``run() ``.
69
+
24
70
*************
25
71
Qiskit 0.15.0
26
72
*************
Original file line number Diff line number Diff line change 26
26
requirements = [
27
27
"qiskit-terra==0.12.0" ,
28
28
"qiskit-aer==0.4.0" ,
29
- "qiskit-ibmq-provider==0.4.6 " ,
29
+ "qiskit-ibmq-provider==0.5.0 " ,
30
30
"qiskit-ignis==0.2.0" ,
31
31
"qiskit-aqua==0.6.4" ,
32
32
]
33
33
34
34
setup (
35
35
name = "qiskit" ,
36
- version = "0.15 .0" ,
36
+ version = "0.16 .0" ,
37
37
description = "Software for developing quantum computing programs" ,
38
38
long_description = README ,
39
39
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments