Skip to content
This repository was archived by the owner on Aug 19, 2023. It is now read-only.

Commit e97a184

Browse files
Bump Meta (#1162)
* Bump version for qiskit-terra==0.16.4 Bump the meta repo version to include: qiskit-terra==0.16.4 * Bump version for qiskit-aer==0.7.4 Bump the meta repo version to include: qiskit-aer==0.7.4 * Add terra and aer release notes * Bump version for qiskit-aqua==0.8.2 Bump the meta repo version to include: qiskit-aqua==0.8.2 * Bump version for qiskit-ignis==0.5.2 Bump the meta repo version to include: qiskit-ignis==0.5.2 * Add release notes for ignis Co-authored-by: Matthew Treinish <[email protected]>
1 parent 235c9fa commit e97a184

File tree

3 files changed

+79
-6
lines changed

3 files changed

+79
-6
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# The short X.Y version
4646
version = ''
4747
# The full version, including alpha/beta/rc tags
48-
release = '0.23.4'
48+
release = '0.23.5'
4949

5050
rst_prolog = """
5151
.. |version| replace:: {0}

docs/release_notes.rst

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,79 @@ This table tracks the meta-package versions and the version of each Qiskit eleme
2121
Notable Changes
2222
###############
2323

24+
*************
25+
Qiskit 0.23.5
26+
*************
27+
28+
Terra 0.16.4
29+
============
30+
31+
.. _Release Notes_0.16.4_Prelude:
32+
33+
Prelude
34+
-------
35+
36+
This release is a bugfix release that primarily fixes compatibility with numpy
37+
1.20.0. This numpy release deprecated their local aliases for Python's numeric
38+
types (``np.int`` -> ``int``, ``np.float`` -> ``float``, etc.) and the usage of
39+
these aliases in Qiskit resulted in a large number of deprecation warnings being
40+
emitted. This release fixes this so you can run Qiskit with numpy 1.20.0 without
41+
those deprecation warnings.
42+
43+
Aer 0.7.4
44+
=========
45+
46+
.. _Release Notes_Aer_0.7.4_Bug Fixes:
47+
48+
Bug Fixes
49+
----------
50+
51+
Fixes compatibility with numpy 1.20.0. This numpy release deprecated their local
52+
aliases for Python's numeric types (``np.int`` -> ``int``,
53+
``np.float`` -> ``float``, etc.) and the usage of these aliases in Qiskit Aer
54+
resulted in a large number of deprecation warnings being emitted. This release
55+
fixes this so you can run Qiskit Aer with numpy 1.20.0 without those deprecation
56+
warnings.
57+
58+
Ignis 0.5.2
59+
===========
60+
61+
.. _Release Notes_Ignis_0.5.2_Prelude:
62+
63+
Prelude
64+
-------
65+
66+
This release is a bugfix release that primarily fixes compatibility with numpy
67+
1.20.0. It is also the first release to include support for Python 3.9. Earlier
68+
releases (including 0.5.0 and 0.5.1) worked with Python 3.9 but did not
69+
indicate this in the package metadata, and there was no upstream testing for
70+
those releases. This release fixes that and was tested on Python 3.9 (in
71+
addition to 3.6, 3.7, and 3.8).
72+
73+
.. _Release Notes_Ignis_0.5.2_Bug Fixes:
74+
75+
Bug Fixes
76+
---------
77+
78+
- `networkx <https://networkx.org/>`__ is explicitly listed as a dependency
79+
now. It previously was an implicit dependency as it was required for the
80+
:mod:`qiskit.ignis.verification.topological_codes` module but was not
81+
correctly listed as a depdendency as qiskit-terra also requires networkx
82+
and is also a depdency of ignis so it would always be installed in practice.
83+
However, it is necessary to list it as a requirement for future releases
84+
of qiskit-terra that will not require networkx. It's also important to
85+
correctly list the dependencies of ignis in case there were a future
86+
incompatibility between version requirements.
87+
88+
Aqua 0.8.2
89+
==========
90+
91+
92+
IBM Q Provider 0.11.1
93+
=====================
94+
95+
No change
96+
2497
*************
2598
Qiskit 0.23.4
2699
*************

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424

2525

2626
requirements = [
27-
"qiskit-terra==0.16.3",
28-
"qiskit-aer==0.7.3",
27+
"qiskit-terra==0.16.4",
28+
"qiskit-aer==0.7.4",
2929
"qiskit-ibmq-provider==0.11.1",
30-
"qiskit-ignis==0.5.1",
31-
"qiskit-aqua==0.8.1",
30+
"qiskit-ignis==0.5.2",
31+
"qiskit-aqua==0.8.2",
3232
]
3333

3434
setup(
3535
name="qiskit",
36-
version="0.23.4",
36+
version="0.23.5",
3737
description="Software for developing quantum computing programs",
3838
long_description=README,
3939
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)