Pennylane-lightning

Latest version: v0.40.0

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 7

0.31.0

Not secure
New features since last release

* Update Kokkos support to 4.0.01. [(439)] (https://github.com/PennyLaneAI/pennylane-lightning/pull/439)

Breaking changes

* Update tests to be compliant with PennyLane v0.31.0 development changes and deprecations. [(448)](https://github.com/PennyLaneAI/pennylane-lightning/pull/448)

Improvements

* Remove logic from `setup.py` and transfer paths and env variable definitions into workflow files. [(450)](https://github.com/PennyLaneAI/pennylane-lightning/pull/450)

* Detect MKL or CBLAS if `ENABLE_BLAS=ON` making sure that BLAS is linked as expected. [(449)](https://github.com/PennyLaneAI/pennylane-lightning/pull/449)

Documentation

* Fix LightningQubit class parameter documentation. [(456)](https://github.com/PennyLaneAI/pennylane-lightning/pull/456)

Bug fixes

* Ensure cross-platform wheels continue to build with updates in git safety checks. [(452)](https://github.com/PennyLaneAI/pennylane-lightning/pull/452)

* Fixing Python version bug introduce in [(450)](https://github.com/PennyLaneAI/pennylane-lightning/pull/450)
when `Python_EXECUTABLE` was removed from `setup.py`. [(461)](https://github.com/PennyLaneAI/pennylane-lightning/pull/461)

* Ensure aligned allocator definition works with C++20 compilers. [(438)](https://github.com/PennyLaneAI/pennylane-lightning/pull/438)

* Prevent multiple threads from calling `Kokkos::initialize` or `Kokkos::finalize`. [(439)](https://github.com/PennyLaneAI/pennylane-lightning/pull/439)

Contributors

This release contains contributions from (in alphabetical order):

Vincent Michaud-Rioux, Lee J. O'Riordan, Chae-Yeun Park

0.30.0

Not secure
New features since last release

* Add MCMC sampler.
[(384)](https://github.com/PennyLaneAI/pennylane-lightning/pull/384)

* Serialize PennyLane's arithmetic operators when they are used as observables
that are expressed in the Pauli basis.
[(424)](https://github.com/PennyLaneAI/pennylane-lightning/pull/424)

Breaking changes

* Lightning now works with the new return types specification that is now default in PennyLane.
See [the PennyLane `qml.enable_return`](https://docs.pennylane.ai/en/stable/code/api/pennylane.enable_return.html?highlight=enable_return) documentation for more information on this change.
[(427)](https://github.com/PennyLaneAI/pennylane-lightning/pull/427)

Instead of creating potentially ragged numpy array, devices and `QNode`'s now return an object of the same type as that
returned by the quantum function.


>>> dev = qml.device('lightning.qubit', wires=1)
>>> qml.qnode(dev, diff_method="adjoint")
... def circuit(x):
... qml.RX(x, wires=0)
... return qml.expval(qml.PauliY(0)), qml.expval(qml.PauliZ(0))
>>> x = qml.numpy.array(0.5)
>>> circuit(qml.numpy.array(0.5))
(array(-0.47942554), array(0.87758256))


Interfaces like Jax or Torch handle tuple outputs without issues:


>>> jax.jacobian(circuit)(jax.numpy.array(0.5))
(Array(-0.87758255, dtype=float32, weak_type=True),
Array(-0.47942555, dtype=float32, weak_type=True))


Autograd cannot differentiate an output tuple, so results must be converted to an array before
use with `qml.jacobian`:


>>> qml.jacobian(lambda y: qml.numpy.array(circuit(y)))(x)

0.29.0

Not secure
Improvements

* Remove runtime dependency on ninja build system. [(414)](https://github.com/PennyLaneAI/pennylane-lightning/pull/414)

* Allow better integration and installation support with CMake targeted binary builds. [(403)](https://github.com/PennyLaneAI/pennylane-lightning/pull/403)

* Remove explicit Numpy and Scipy requirements. [(412)](https://github.com/PennyLaneAI/pennylane-lightning/pull/412)

* Get `llvm` installation root from the environment variable `LLVM_ROOT_DIR` (or fallback to `brew`). [(413)](https://github.com/PennyLaneAI/pennylane-lightning/pull/413)

* Update AVX2/512 kernel infrastructure for additional gate/generator operations. [(404)](https://github.com/PennyLaneAI/pennylane-lightning/pull/404)

* Remove unnecessary lines for resolving CodeCov issue. [(415)](https://github.com/PennyLaneAI/pennylane-lightning/pull/415)

* Add more AVX2/512 gate operations. [(393)](https://github.com/PennyLaneAI/pennylane-lightning/pull/393)

Bug fixes

* Ensure error raised when asking for out of order marginal probabilities. Prevents the return of incorrect results. [(416)](https://github.com/PennyLaneAI/pennylane-lightning/pull/416)

* Fix Github shields in README. [(402)](https://github.com/PennyLaneAI/pennylane-lightning/pull/402)

Contributors

Amintor Dusko, Vincent Michaud-Rioux, Lee James O'Riordan, Chae-Yeun Park

0.28.2

Not secure
Bug fixes

* Fix Python module versioning for Linux wheels. [(408)](https://github.com/PennyLaneAI/pennylane-lightning/pull/408)

Contributors

This release contains contributions from (in alphabetical order):

Amintor Dusko

0.28.1

Not secure
Bug fixes

* Fix Pybind11 module versioning and locations for Windows wheels. [(400)](https://github.com/PennyLaneAI/pennylane-lightning/pull/400)

Contributors

This release contains contributions from (in alphabetical order):

Lee J. O'Riordan

0.28.0

Not secure
Breaking changes

* Deprecate support for Python 3.7. [(391)](https://github.com/PennyLaneAI/pennylane-lightning/pull/391)

Improvements

* Improve Lightning package structure for external use as a C++ library. [(369)](https://github.com/PennyLaneAI/pennylane-lightning/pull/369)

* Improve the stopping condition method. [(386)](https://github.com/PennyLaneAI/pennylane-lightning/pull/386)

Bug fixes

- Pin CMake to 3.24.x in wheel-builder to avoid Python not found error in CMake 3.25, when building wheels for PennyLane-Lightning-GPU. [(387)](https://github.com/PennyLaneAI/pennylane-lightning/pull/387)

Contributors

This release contains contributions from (in alphabetical order):

Amintor Dusko, Lee J. O'Riordan

Page 3 of 7

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.