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

Removes support for Python 3.6 and adds support for Python 3.9 #128

Merged
merged 1 commit into from
Aug 13, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@

### Breaking changes

* Removes support for Python 3.6 and adds support for Python 3.9.
[#128](https://github.com/PennyLaneAI/pennylane-lightning/pull/128)

* Compilers with C++17 support are now required to build C++ module.
[#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113)

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 @@ sphinx:
configuration: doc/conf.py

python:
version: 3.6
version: 3.9
install:
- requirements: doc/requirements.txt
- requirements: requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Features
Installation
============

PennyLane-Lightning requires Python version 3.6 and above. It can be installed using ``pip``:
PennyLane-Lightning requires Python version 3.7 and above. It can be installed using ``pip``:

.. code-block:: console

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ def build_extensions(self):
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
Comment on lines -211 to 214
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@trbromley would it be good to reflect this already in the v0.17.0 release? Will v0.17.0 discontinue support for Python 3.6/add support for Python 3.9?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@antalszava yes this would be good to merge into the release branch too - I think we should drop 3.6 support in this release since it's not anyway currently supported in current PL.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds great! @albi3ro could you maybe delete the "Programming Language :: Python :: 3.6", line from setup.py in #127?

"Topic :: Scientific/Engineering :: Physics",
]
Expand Down