-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
c021664
commit cee45e5
Showing
7 changed files
with
10 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build: | |
image: latest | ||
|
||
python: | ||
version: 3.6 | ||
version: 3.8 | ||
|
||
# Don't build any extra formats | ||
formats: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
Version number (major.minor.patch[-label]) | ||
""" | ||
|
||
__version__ = "0.16.0-dev" | ||
__version__ = "0.16.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 = { | ||
|
@@ -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" | ||
] | ||
|