Skip to content

Commit

Permalink
Version bump to 0.17.0 (#73)
Browse files Browse the repository at this point in the history
* Version bump

* Typo.

* Typo.

* Deprecated method

* Remove abc

* Typo
  • Loading branch information
rmoyard authored Aug 11, 2021
1 parent 605e5b6 commit 0399874
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
12 changes: 3 additions & 9 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
# Release 0.16.0-dev0

### New features since last release
# Release 0.17.0

### Breaking changes

* Remove Python 3.5 / 3.6 and add the compatibility tag for Python 3.8 / 3.9.
[(#72)](https://github.com/XanaduAI/pennylane-pq/pull/72)

### Improvements

### Documentation


### Bug fixes

* Remove `SparseHamiltonian` from possible observables in tests.
* Remove `SparseHamiltonian` from authorized observables in tests.
[(#72)](https://github.com/XanaduAI/pennylane-pq/pull/72)

### Contributors
Expand Down
2 changes: 1 addition & 1 deletion pennylane_pq/_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.17.0"
9 changes: 4 additions & 5 deletions pennylane_pq/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
"""
import abc
import numpy as np
import projectq as pq
from projectq.setups.ibm import get_engine_list
Expand Down Expand Up @@ -140,7 +139,7 @@ class _ProjectQDevice(Device): # pylint: disable=abstract-method

name = "ProjectQ PennyLane plugin"
short_name = "projectq"
pennylane_requires = ">=0.11.0"
pennylane_requires = ">=0.15.0"
version = "0.4.2"
plugin_version = __version__
author = "Christian Gogolin and Xanadu"
Expand All @@ -149,15 +148,15 @@ class _ProjectQDevice(Device): # pylint: disable=abstract-method
"model": "qubit",
}

@abc.abstractproperty
@property
def _operation_map(self):
raise NotImplementedError

@abc.abstractproperty
@property
def _observable_map(self):
raise NotImplementedError

@abc.abstractproperty
@property
def _backend_kwargs(self):
raise NotImplementedError

Expand Down

0 comments on commit 0399874

Please sign in to comment.