Drop support for EOL Python 3.8

This commit is contained in:
Hugo van Kemenade 2024-12-21 15:53:13 +02:00
commit 714a3d53a1
9 changed files with 22 additions and 40 deletions

View file

@ -14,7 +14,6 @@ classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
@ -28,7 +27,7 @@ classifiers = [
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: reStructuredText",
]
requires-python = ">=3.8.1,<4.0"
requires-python = ">=3.9,<4.0"
dependencies = [
"blinker>=1.7.0",
"docutils>=0.20.1",
@ -39,7 +38,6 @@ dependencies = [
"python-dateutil>=2.8.2",
"rich>=13.6.0",
"unidecode>=1.3.7",
"backports-zoneinfo>=0.2.1; python_version < \"3.9\"",
"watchfiles>=0.21.0",
"tzdata; sys_platform == 'win32'",
]