This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make cron jobs manually triggerable * Prepare release 0.19.2
- Loading branch information
1 parent
3dcfd8a
commit 14c1af4
Showing
4 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.19.1 | ||
0.19.2 |
13 changes: 13 additions & 0 deletions
13
releasenotes/notes/0.19/fix-terra-version-string-parsing-12afae5b2b947211.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
fixes: | ||
- | | ||
In the upcoming terra release there will be a release candidate tagged | ||
prior to the final release. However changing the version string for the | ||
package is blocked on the qiskit-ibmq-provider right now because it is trying | ||
to parse the version and is assuming there will be no prelease suffix on | ||
the version string (see `#8200 <https://github.com/Qiskit/qiskit-terra/pull/8200>`__ | ||
for the details). PR `#1135 <https://github.com/Qiskit/qiskit-ibmq-provider/pull/1135>`__ | ||
fixes this version parsing to use the regex from the | ||
pypa/packaging project which handles all the PEP440 package versioning | ||
include pre-release suffixes. This will enable terra to release an | ||
0.21.0rc1 tag without breaking the qiskit-ibmq-provider. |
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/0.19/replace-threading-aliases-64a9552b28abd3cd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
``threading.currentThread`` and ``notifyAll`` were deprecated in Python 3.10 (October 2021) | ||
and will be removed in Python 3.12 (October 2023). | ||
PR `#1133 <https://github.com/Qiskit/qiskit-ibmq-provider/pull/1133>`__ replaces them | ||
with ``threading.current_thread``, ``notify_all`` added in Python 2.6 (October 2008). |