From 9056222efe77e3a1a47c9daa18baa8ed1f1c684e Mon Sep 17 00:00:00 2001 From: Adrien Morison Date: Fri, 30 Aug 2024 00:26:26 +0100 Subject: [PATCH] drop Python 3.8 support --- .github/workflows/tox.yml | 2 +- pyproject.toml | 3 +-- tox.ini | 2 -- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 35b449c..641a776 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - py: ['3.8', '3.9', '3.10', '3.11', '3.12'] + py: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index cb85c8b..fb49c96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,13 +21,12 @@ classifiers = [ "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "dmsuite>=0.3,<0.4", "numpy>=1.21", diff --git a/tox.ini b/tox.ini index cc590d2..a846f09 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,5 @@ [tox] envlist = - py38 py39 py310 py311 @@ -43,7 +42,6 @@ commands = [gh] python = - 3.8 = py38, mypy 3.9 = py39, mypy 3.10 = py310, mypy 3.11 = py311, mypy