Skip to content

Commit ccc840e

Browse files
committed
Removed support for Python 3.7 and 3.8
Signed-off-by: Andrea Zoppi <texzk@email.it>
1 parent 489df47 commit ccc840e

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,5 @@ def read_version():
8080
napoleon_custom_sections = [('Method Groups', 'params_style')]
8181

8282
typehints_document_rtype = False
83+
84+
linkcheck_ignore = []

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ classifiers = [
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3 :: Only",
16-
"Programming Language :: Python :: 3.7",
17-
"Programming Language :: Python :: 3.8",
1816
"Programming Language :: Python :: 3.9",
1917
"Programming Language :: Python :: 3.10", # adds: typing.TypeAlias
2018
"Programming Language :: Python :: 3.11",
@@ -33,7 +31,7 @@ dynamic = ["version"]
3331
license = "BSD-2-Clause"
3432
name = "bytesparse"
3533
readme = "README.rst"
36-
requires-python = ">= 3.7"
34+
requires-python = ">= 3.9"
3735

3836
[project.optional-dependencies]
3937
testing = ["pytest"]

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,19 @@ envlist =
55
clean,
66
docs,
77
check,
8-
{py37,py38,py39,py310,py311,py312,py313,py314,pypy3},
8+
{py39,py310,py311,py312,py313,py314,pypy3},
99
report
1010

1111
requires =
1212
tox >= 4
13-
setuptools >= 61
13+
setuptools >= 77.0.3
1414

1515
skip_missing_interpreters = true
1616

1717

1818
; This is the environment matrix.
1919
[testenv]
2020
basepython =
21-
py37: {env:TOXPYTHON:python3.7}
22-
py38: {env:TOXPYTHON:python3.8}
2321
py39: {env:TOXPYTHON:python3.9}
2422
py310: {env:TOXPYTHON:python3.10}
2523
py311: {env:TOXPYTHON:python3.11}

0 commit comments

Comments
 (0)