Skip to content

Commit 86f203d

Browse files
authored
Remove extended support reference in README (Qiskit#13668)
* remove extended support reference in README * remove 0.* in deprecation release
1 parent e9ccd3f commit 86f203d

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

DEPRECATION.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deprecation Policy
22

3-
Starting from the 1.0.0 release, Qiskit follows semantic versioning, with a yearly release cycle for major releases.
3+
Starting from the 1.0 release, Qiskit follows semantic versioning, with a yearly release cycle for major releases.
44
[Full details of the scheduling are hosted with the external public documentation](https://docs.quantum.ibm.com/open-source/qiskit-sdk-version-strategy).
55

66
This document is primarily intended for developers of Qiskit themselves.
@@ -150,11 +150,11 @@ and add the deprecation to that function's docstring so that it shows up in the
150150
```python
151151
from qiskit.utils.deprecation import deprecate_arg, deprecate_func
152152

153-
@deprecate_func(since="0.24.0", additional_msg="No replacement is provided.")
153+
@deprecate_func(since="1.2", additional_msg="No replacement is provided.")
154154
def deprecated_func():
155155
pass
156156

157-
@deprecate_arg("bad_arg", new_alias="new_name", since="0.24.0")
157+
@deprecate_arg("bad_arg", new_alias="new_name", since="1.2")
158158
def another_func(bad_arg: str, new_name: str):
159159
pass
160160
```
@@ -178,7 +178,7 @@ import warnings
178178
def deprecated_function():
179179
warnings.warn(
180180
"The function qiskit.deprecated_function() is deprecated since "
181-
"Qiskit 0.44.0, and will be removed 3 months or more later. "
181+
"Qiskit 1.2, and will be removed in 2.0 or a later major release."
182182
"Instead, you should use qiskit.other_function().",
183183
category=DeprecationWarning,
184184
stacklevel=2,
@@ -235,9 +235,9 @@ def deprecated_function():
235235
"""
236236
Short description of the deprecated function.
237237
238-
.. deprecated:: 0.44.0
238+
.. deprecated:: 1.2
239239
The function qiskit.deprecated_function() is deprecated since
240-
Qiskit 0.44.0, and will be removed 3 months or more later.
240+
Qiskit 1.2, and will be removed in 2.0 or a later major release.
241241
Instead, you should use qiskit.other_function().
242242
243243
<rest of the docstring>

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License](https://img.shields.io/github/license/Qiskit/qiskit.svg?)](https://opensource.org/licenses/Apache-2.0) <!--- long-description-skip-begin -->
44
[![Current Release](https://img.shields.io/github/release/Qiskit/qiskit.svg?logo=Qiskit)](https://github.com/Qiskit/qiskit/releases)
5-
[![Extended Support Release](https://img.shields.io/github/v/release/Qiskit/qiskit?sort=semver&filter=0.*&logo=Qiskit&label=extended%20support)](https://github.com/Qiskit/qiskit/releases?q=tag%3A0)
5+
<!-- [![Extended Support Release](https://img.shields.io/github/v/release/Qiskit/qiskit?sort=semver&filter=0.*&logo=Qiskit&label=extended%20support)](https://github.com/Qiskit/qiskit/releases?q=tag%3A0) -->
66
[![Downloads](https://img.shields.io/pypi/dm/qiskit.svg)](https://pypi.org/project/qiskit/)
77
[![Coverage Status](https://coveralls.io/repos/github/Qiskit/qiskit/badge.svg?branch=main)](https://coveralls.io/github/Qiskit/qiskit?branch=main)
88
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qiskit)
@@ -22,9 +22,6 @@ For more details on how to use Qiskit, refer to the documentation located here:
2222

2323
## Installation
2424

25-
> [!WARNING]
26-
> Do not try to upgrade an existing Qiskit 0.* environment to Qiskit 1.0 in-place. [Read more](https://docs.quantum.ibm.com/migration-guides/qiskit-1.0-installation).
27-
2825
We encourage installing Qiskit via ``pip``:
2926

3027
```bash
@@ -146,9 +143,9 @@ to the project at different levels. If you use Qiskit, please cite as per the in
146143

147144
The changelog for a particular release is dynamically generated and gets
148145
written to the release page on Github for each release. For example, you can
149-
find the page for the `0.46.0` release here:
146+
find the page for the `1.2.0` release here:
150147

151-
<https://github.com/Qiskit/qiskit/releases/tag/0.46.0>
148+
<https://github.com/Qiskit/qiskit/releases/tag/1.2.0>
152149

153150
The changelog for the current release can be found in the releases tab:
154151
[![Releases](https://img.shields.io/github/release/Qiskit/qiskit.svg?style=flat&label=)](https://github.com/Qiskit/qiskit/releases)

0 commit comments

Comments
 (0)