Skip to content

Commit 8c3f3fd

Browse files
committed
Ensure we require py36 or newer
Fixes: #180
1 parent d076fa2 commit 8c3f3fd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
# https://peps.python.org/pep-0621/#readme
7-
requires-python = ">=3.6"
7+
requires-python = ">=3.7"
88
dynamic = ["version"]
99
name = "ansi2html"
1010
description = "Checks playbooks for practices and behavior that could potentially be improved"
@@ -22,7 +22,6 @@ classifiers = [
2222
"Operating System :: POSIX",
2323
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.6",
2625
"Programming Language :: Python :: 3.7",
2726
"Programming Language :: Python :: 3.8",
2827
"Programming Language :: Python :: 3.9",
@@ -39,7 +38,10 @@ classifiers = [
3938
"Topic :: Utilities",
4039
]
4140
keywords = ["ansi", "html", "color"]
42-
dependencies = ['importlib-metadata; python_version<"3.8"']
41+
dependencies = [
42+
'importlib-metadata; python_version<"3.8"',
43+
'typing_extensions; python_version<"3.8"'
44+
]
4345

4446
[project.urls]
4547
homepage = "https://github.com/pycontribs/ansi2html"

0 commit comments

Comments
 (0)