From ace19a62a962a8859e7dd28e2c79aac215aadbd9 Mon Sep 17 00:00:00 2001 From: Ali Kuwajerwala Date: Mon, 2 Dec 2024 00:58:30 -0800 Subject: [PATCH] Change python version requirement to 3.8 (#6) * Update pyproject.toml fix pyhon version requirement * Update setup.py --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6a8d2f7..9eb4fe0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.black] line-length = 120 -target-version = ["py311"] +target-version = ["py38"] include = '\.pyi?$' [tool.pytest.ini_options] diff --git a/setup.py b/setup.py index 4e7b011..1f81654 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ def run(self) -> None: zip_safe=False, long_description=long_description, long_description_content_type="text/markdown", - python_requires=">=3.11", + python_requires=">=3.8", include_package_data=True, packages=find_packages(include=["krec"]), cmdclass={