Skip to content

Commit

Permalink
Change python version requirement to 3.8 (#6)
Browse files Browse the repository at this point in the history
* Update pyproject.toml

fix pyhon version requirement

* Update setup.py
  • Loading branch information
alik-git authored Dec 2, 2024
1 parent 118affa commit ace19a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.black]

line-length = 120
target-version = ["py311"]
target-version = ["py38"]
include = '\.pyi?$'

[tool.pytest.ini_options]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down

0 comments on commit ace19a6

Please sign in to comment.