Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8]
os: ["macOS-latest", "ubuntu-latest"]
steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 8 additions & 0 deletions releasenotes/notes/drop-py35-1a7810120bfa3bef.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
upgrade:
- |
The deprecated support for running qiskit-ignis with Python 3.5 has
been removed. To use qiskit-ignis >=0.5.0 you will now need at
least Python 3.6. If you are using Python 3.5 the last version which will
work is qiskit-ignis 0.4.x.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -83,6 +82,6 @@
},
install_requires=requirements,
include_package_data=True,
python_requires=">=3.5",
python_requires=">=3.6",
zip_safe=False
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.1
envlist = py35, py36, py37, py38, lint
envlist = py36, py37, py38, lint
skipsdist = True

[testenv]
Expand Down