diff --git a/pyproject.toml b/pyproject.toml index caafe5b3..539d6fc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,13 +6,13 @@ build-backend = "hatchling.build" name = "youtube2zim" authors = [{ name = "Kiwix", email = "dev@kiwix.org" }] keywords = ["kiwix", "zim", "offline", "youtube"] -requires-python = ">=3.11" +requires-python = ">=3.10,<3.11" description = "Make ZIM file from a Youtube channel, user or playlist(s)" readme = "README.md" license = { text = "GPL-3.0-or-later" } classifiers = [ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", ] dependencies = [ @@ -222,5 +222,5 @@ exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"] include = ["src", "tests", "tasks.py"] exclude = [".env/**", ".venv/**", "src/youtube2zim/templates", ".hatch"] extraPaths = ["src"] -pythonVersion = "3.11" +pythonVersion = "3.10" typeCheckingMode = "basic"