From 04392eaf3c0cd8df76461cff82d0c757d8d32f11 Mon Sep 17 00:00:00 2001 From: Arnau Casau <47946624+arnaucasau@users.noreply.github.com> Date: Tue, 24 Oct 2023 17:00:51 +0200 Subject: [PATCH] Update python version to 3.8-3.11 (#33) * Update python version to 3.8-3.11 * Update pyproject.toml --- .github/workflows/main.yml | 2 +- pyproject.toml | 2 +- setup.py | 4 ++-- tox.ini | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fc9b3d9..688cba3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index fe5bb9f..a617450 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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'] diff --git a/setup.py b/setup.py index 6086551..987075e 100755 --- a/setup.py +++ b/setup.py @@ -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/", diff --git a/tox.ini b/tox.ini index bf7164f..c7564e8 100644 --- a/tox.ini +++ b/tox.ini @@ -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