Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Daily rc sync to master #4294

Merged
merged 18 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ build:
os: ubuntu-22.04
tools:
python: "3.8"
apt_packages:
- graphviz

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
18 changes: 9 additions & 9 deletions doc/development/deprecations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Deprecations
Pending deprecations
--------------------

* The `grouping_type` and `grouping_method` arguments of `qchem.molecular_hamiltonian()` are deprecated.
* The ``grouping_type`` and ``grouping_method`` arguments of ``qchem.molecular_hamiltonian()`` are deprecated.

- Deprecated in v0.31
- Will be removed in v0.32
Expand Down Expand Up @@ -36,8 +36,8 @@ Pending deprecations
- Deprecated in v0.31
- Will be removed in v0.32

* ``LieAlgebraOptimizer`` is renamed. Please use ``RiemannianGradientOptimizer`` instead.
* ``LieAlgebraOptimizer`` has been renamed. Please use ``RiemannianGradientOptimizer`` instead.

- Deprecated in v0.31
- Will be removed in v0.32

Expand Down Expand Up @@ -86,7 +86,7 @@ Pending deprecations
* ``qml.ExpvalCost`` has been deprecated, and usage will now raise a warning.

- Deprecated in v0.24
- Will be removed in v0.31
- Will be removed in v0.32

Instead, it is recommended to simply
pass Hamiltonians to the ``qml.expval`` function inside QNodes:
Expand Down Expand Up @@ -122,17 +122,17 @@ Pending deprecations
Completed deprecation cycles
----------------------------

* The ``qml.utils.sparse_hamiltonian`` function is deprecated. ``~.Hamiltonian.sparse_matrix`` should be used instead.
* The ``qml.utils.sparse_hamiltonian`` function has been removed. ``~.Hamiltonian.sparse_matrix`` should be used instead.

- Deprecated in v0.29
- Removed in v0.31

* The ``collections`` module has been deprecated.
* The ``collections`` module has been removed.

- Deprecated in v0.29
- Removed in v0.31

* ``qml.op_sum``` is deprecated. Users should use ``qml.sum`` instead.
* ``qml.op_sum``` has been removed. Users should use ``qml.sum`` instead.

- Deprecated in v0.29.
- Removed in v0.31.
Expand All @@ -159,11 +159,11 @@ Completed deprecation cycles
- The old signature is replaced with the new one in v0.30


* The ``grouping`` module is removed. The functionality has been moved and
* The ``grouping`` module has been removed. The functionality has been moved and
reorganized in the new ``pauli`` module under ``pauli/utils.py`` or ``pauli/grouping/``.

- Still accessible in v0.27, v0.28, v0.29, v0.30
- Will be removed in v0.31
- Removed in v0.31

The functions from ``grouping/pauli.py``, ``grouping/transformations.py`` and
``grouping/utils.py`` have been moved to ``pauli/utils.py``. The remaining functions
Expand Down
2 changes: 2 additions & 0 deletions doc/development/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Release notes

This page contains the release notes for PennyLane.

.. mdinclude:: ../releases/changelog-dev.md

.. mdinclude:: ../releases/changelog-0.31.0.md

.. mdinclude:: ../releases/changelog-0.30.0.md
Expand Down
2 changes: 1 addition & 1 deletion doc/releases/changelog-0.27.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@
* `qml.math.unwrap` no longer creates ragged arrays. Lists remain lists.
[(#3163)](https://github.com/PennyLaneAI/pennylane/pull/3163)

* New `null.qubit` device. The `null.qubit`performs no operations or memory allocations.
* New `null.qubit` device. The `null.qubit` performs no operations or memory allocations.
[(#2589)](https://github.com/PennyLaneAI/pennylane/pull/2589)

* `default.qubit` favours decomposition and avoids matrix construction for `QFT` and `GroverOperator` at larger qubit numbers.
Expand Down
Loading