diff --git a/CHANGELOG.md b/CHANGELOG.md index e2de902fe..c68f5855e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,15 @@ PennyLane v0.16 to the Qiskit devices. [(#137)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/137) +### Breaking changes + +* Deprecated Python 3.6. + [(#140)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/140) + ### Improvements * The plugin can now load Qiskit circuits with more complicated ``ParameterExpression`` variables. -[(#139)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/139) + [(#139)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/139) ### Contributors diff --git a/requirements.txt b/requirements.txt index a28982159..76638a384 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ qiskit>=0.25 -git+https://github.com/PennyLaneAI/pennylane.git@v0.16.0-rc0 +pennylane>=0.16 numpy sympy networkx>=2.2;python_version>'3.5' diff --git a/setup.py b/setup.py index 2391925b2..9824cd0be 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ requirements = [ "qiskit>=0.25", - "pennylane @ git+https://github.com/PennyLaneAI/pennylane.git@v0.16.0-rc0", + "pennylane>=0.16", "numpy", "networkx>=2.2", ]