Skip to content

Commit

Permalink
Increment version 0.16.0 (#140)
Browse files Browse the repository at this point in the history
* increment version

* no dev

* minor changelog change

* pennylane_requires and PL version

* Update requirements.txt

* No Python 3.5 and 3.6

* Use Python 3.8 for readthedocs

* Update setup.py

* Update requirements.txt

* Update requirements.txt

* Update setup.py

Co-authored-by: Antal Szava <[email protected]>
  • Loading branch information
albi3ro and antalszava authored Jun 17, 2021
1 parent c021664 commit cee45e5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 19 deletions.
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]
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 @ git+https://github.com/PennyLaneAI/[email protected]",
"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

0 comments on commit cee45e5

Please sign in to comment.