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

Increment version 0.16.0 #140

Merged
merged 12 commits into from
Jun 17, 2021
Merged
Show file tree
Hide file tree
Changes from 11 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: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Cancel Previous Runs
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build:
image: latest

python:
version: 3.6
version: 3.8

# Don't build any extra formats
formats:
Expand Down
8 changes: 1 addition & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
# Release 0.16.0-dev0
# Release 0.16.0

### New features since last release

* Added support for the new `qml.Projector` observable in
PennyLane v0.16 to the Qiskit devices.
[(#137)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/137)

### Breaking changes

### Improvements

* The plugin can now load Qiskit circuits with more complicated ``ParameterExpression`` variables.
[(#139)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/139)

### Documentation

### Bug fixes

### Contributors

This release contains contributions from (in alphabetical order):
Expand Down
2 changes: 1 addition & 1 deletion pennylane_qiskit/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.16.0-dev"
__version__ = "0.16.0"
4 changes: 2 additions & 2 deletions pennylane_qiskit/qiskit_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ class QiskitDevice(QubitDevice, abc.ABC):
to simulate a device compliant circuit, you can specify a backend here.
"""
name = "Qiskit PennyLane plugin"
pennylane_requires = ">=0.15.0"
version = "0.15.0"
pennylane_requires = ">=0.16.0"
version = "0.16.0"
plugin_version = __version__
author = "Xanadu"

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
qiskit>=0.25
pennylane>=0.15
git+https://github.com/PennyLaneAI/pennylane[email protected]
antalszava marked this conversation as resolved.
Show resolved Hide resolved
numpy
sympy
networkx>=2.2;python_version>'3.5'
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@

requirements = [
"qiskit>=0.25",
"pennylane>=0.15",
"pennylane>=0.16",
antalszava marked this conversation as resolved.
Show resolved Hide resolved
"numpy",
"networkx>=2.2;python_version>'3.5'",
# Networkx 2.4 is the final version with python 3.5 support.
"networkx>=2.2,<2.4;python_version=='3.5'"
"networkx>=2.2",
]

info = {
Expand Down Expand Up @@ -75,10 +73,9 @@
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
"Topic :: Scientific/Engineering :: Physics"
]
Expand Down