Skip to content

Commit

Permalink
Remove Python 3.7, add Python 3.10 (#123)
Browse files Browse the repository at this point in the history
* bump python version

* remove 3.11, add changelog
  • Loading branch information
albi3ro authored Nov 28, 2022
1 parent 0670d07 commit 6331b9c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9

- name: Build and install Plugin
run: |
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@

### New features since last release

* Adds support for Python 3.10.
[(#123)](https://github.com/PennyLaneAI/pennylane-cirq/pull/123)

### Breaking changes

* Removes support for Python 3.7.
[(#123)](https://github.com/PennyLaneAI/pennylane-cirq/pull/123)

### Improvements

### Documentation
Expand All @@ -14,6 +20,8 @@

This release contains contributions from (in alphabetical order):

Christina Lee

---
# Release 0.27.0

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Features
Installation
============

This plugin requires Python version 3.7 or above, as well as PennyLane
This plugin requires Python version 3.8 or above, as well as PennyLane
and Cirq. Installation of this plugin, as well as all dependencies, can be done using ``pip``:

.. code-block:: bash
Expand All @@ -76,7 +76,7 @@ Dependencies

PennyLane-Cirq requires the following libraries be installed:

* `Python <http://python.org/>`__ >= 3.7
* `Python <http://python.org/>`__ >= 3.8

as well as the following Python packages:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
"Programming Language :: Python",
# Make sure to specify here the versions of Python supported
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
]
Expand Down

0 comments on commit 6331b9c

Please sign in to comment.