Skip to content

Commit

Permalink
No Python 3.5 and 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
antalszava committed Jun 16, 2021
1 parent 4a0e02b commit 9109ba1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 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
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
"qiskit>=0.25",
"pennylane @ git+https://github.com/PennyLaneAI/pennylane.git",
"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 9109ba1

Please sign in to comment.