From 55015ba3f877020f3dd36abf3c3cf3741f3bd035 Mon Sep 17 00:00:00 2001 From: Marco Treglia Date: Wed, 15 May 2024 15:54:27 +0200 Subject: [PATCH] pyproject: drop support python3.7 --- .github/workflows/tests.yml | 2 +- pyproject.toml | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e7a9bce..0cc6fa3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 627ddf9..2cb4425 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "cython_setuptools" description = "Cython setuptools integration" dynamic = ["version"] readme = "README.md" -requires-python = "~=3.7" +requires-python = "~=3.8" keywords = ["cython", "setuptools"] authors = [{name = "Luper Rouch", email= "luper.rouch@gmail.com"}] maintainers = [{ name = "Marco Treglia", email = "mtreglia@gopro.com" }] diff --git a/tox.ini b/tox.ini index 1457432..23e62e9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, py39, py310, py311 +envlist = py38, py39, py310, py311 isolated_build = true [gh-actions]