-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare 0.14.1 release This commit prepares for a 0.14.1 release which just includes #1109 to fix ppc64le builds and #1096 to fix the overhead of `__getitem__` on custom sequence return types. * Update releasenotes/notes/prepare-0.14.1-e5065553a44eb035.yaml Co-authored-by: Ivan Carvalho <8753214+IvanIsCoding@users.noreply.github.com> * Update version in docs config too --------- Co-authored-by: Ivan Carvalho <8753214+IvanIsCoding@users.noreply.github.com>
- Loading branch information
1 parent
5dc2a31
commit 4770a56
Showing
5 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,28 @@ | ||
--- | ||
prelude: > | ||
The rustworkx 0.14.1 release is a small bug fix release that fixes two issues, | ||
firstly it address a performance regression that was introduced in 0.12.0 | ||
for accessing items of custom sequence return types such as | ||
:class:`.NodeIndices`. Secondly, it fixes a build configuration issue for | ||
Linux ppc64le with Python 3.12 and 3.8 which prevented publishing wheels in | ||
0.14.0. | ||
fixes: | ||
- | | ||
Fixed an performance issue with the custom sequence return type classes' | ||
``__getitem__`` method (used for element access and iteration). When support | ||
for slice access was added to these classes in rustworkx 0.12.0 this was | ||
previously implemented in a way that added unnecessary overhead to index | ||
based access, which has been corrected. This fix applies to ``__getitem__`` | ||
on: | ||
* :class:`.BFSSuccessors` | ||
* :class:`.BFSPredecessors` | ||
* :class:`.NodeIndices` | ||
* :class:`.EdgeIndices` | ||
* :class:`.EdgeList` | ||
* :class:`.WeightedEdgeList` | ||
* :class:`.Chains` | ||
See `#1090 <https://github.com/Qiskit/rustworkx/issues/1090>`__ for more | ||
details. |
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