From 4f69425a6fce662a0d766e1ca71d23209414e7b8 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Thu, 26 Dec 2024 12:53:49 +0100 Subject: [PATCH] Remove support for Python 3.8 and 3.9 --- .github/workflows/test.yml | 2 -- README.md | 2 +- setup.py | 5 ++--- tox.ini | 6 ++---- 4 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a02c422..2bad6c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,8 +15,6 @@ jobs: strategy: matrix: python-version: - - "3.8" - - "3.9" - "3.10" steps: diff --git a/README.md b/README.md index 1a2996e..7800dc4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Plugins for camacq: ### Requirements -- Python version 3.8+. +- Python version 3.10+. - camacq >= 0.6.0 ## Usage diff --git a/setup.py b/setup.py index 38f1b9c..39c7f27 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ """Set up file for camacq-plugins package.""" + from pathlib import Path import setuptools @@ -23,7 +24,7 @@ long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", packages=setuptools.find_packages(), - python_requires=">=3.8", + python_requires=">=3.10", install_requires=REQUIRES, entry_points={ "camacq.plugins": [ @@ -35,8 +36,6 @@ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ], ) diff --git a/tox.ini b/tox.ini index c79be88..8e0c251 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,10 @@ [tox] -envlist = py38, py39, py310, lint +envlist = py310, lint skip_missing_interpreters = True [gh-actions] python = - 3.8: py38, lint - 3.9: py39 - 3.10: py310 + 3.10: py310, lint [testenv] commands =