Update python version to 3.8-3.11 (#33)

* Update python version to 3.8-3.11

* Update pyproject.toml
This commit is contained in:
Arnau Casau 2023-10-24 17:00:51 +02:00 committed by GitHub
parent e2cbd7cb97
commit 04392eaf3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.11]
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
steps:
- name: Print Concurrency Group

View File

@ -4,4 +4,4 @@ build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38', 'py39']
target-version = ['py38', 'py39', 'py310', 'py311']

View File

@ -49,17 +49,17 @@ setup(
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum",
packages=find_packages(exclude=["test*"]),
install_requires=REQUIREMENTS,
include_package_data=True,
python_requires=">=3.7",
python_requires=">=3.8",
project_urls={
"Bug Tracker": "https://github.com/Qiskit/qiskit-neko/issues",
"Documentation": "https://qiskit.org/documentation/",

View File

@ -1,6 +1,6 @@
[tox]
minversion = 3.15
envlist = py310,py39,py38,py37,py36,neko,lint
envlist = py311,py310,py39,py38,neko,lint
[testenv]
usedevelop = True