From 0162df00a774e108b0816bafec9255da380c8f8e Mon Sep 17 00:00:00 2001 From: Chris Barnes Date: Tue, 14 Nov 2023 10:30:04 +0000 Subject: [PATCH] Drop python 3.8 While it is still supported by PSF, it is deprecated by numpy's policy, which is a community standard among scientific packages. --- .github/workflows/run-tests.yml | 1 - setup.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index beb714a..9a1ebe1 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,7 +12,6 @@ jobs: fail-fast: false matrix: python-version: - - '3.8' - '3.9' - '3.10' igraph: ["igraph", "no-igraph"] diff --git a/setup.py b/setup.py index 11d9984..05efc1d 100644 --- a/setup.py +++ b/setup.py @@ -41,13 +41,12 @@ 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', ], install_requires=requirements, extras_require={'extras': ['fuzzywuzzy[speedup]~=0.17.0', 'ujson~=1.35']}, - python_requires='>=3.8', + python_requires='>=3.9', zip_safe=False )