Updated minimal Python version to 3.8. As "typing.Literal" is used from the beginning of the project, it is never compatible with Python 3.7. I suppose it was ignored by Python 3.7 when importing the "typing" package but not the name "Literal" itself for type hints.

This commit is contained in:
依瑪貓 2023-04-26 22:30:15 +08:00
parent d1fd0c3693
commit 264ba158ee

View File

@ -20,7 +20,7 @@ name = "Flask-DigestAuth"
dynamic = ["version"] dynamic = ["version"]
description = "The Flask HTTP Digest Authentication project." description = "The Flask HTTP Digest Authentication project."
readme = "README.rst" readme = "README.rst"
requires-python = ">=3.7" requires-python = ">=3.8"
authors = [ authors = [
{name = "imacat", email = "imacat@mail.imacat.idv.tw"}, {name = "imacat", email = "imacat@mail.imacat.idv.tw"},
] ]