diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0cc6fa3..abbcfa0 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.8', '3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 5b81eac..54fd2a1 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.8" +requires-python = "~=3.10" keywords = ["cython", "setuptools"] authors = [{name = "Luper Rouch", email= "luper.rouch@gmail.com"}] maintainers = [{ name = "Marco Treglia", email = "mtreglia@gopro.com" }] @@ -33,7 +33,8 @@ dev = [ "virtualenv", "cython", "pytest-virtualenv", - "six"] + "six", +] [metadata] long_description = "file:README.md" diff --git a/tox.ini b/tox.ini index 23e62e9..96ef0f5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,9 @@ [tox] -envlist = py38, py39, py310, py311 +envlist = py310, py311 isolated_build = true [gh-actions] python = - 3.8: py38, - 3.9: py39, 3.10: py310, flake8 3.11: py311,