From adb5918786cfee222ff126121c8aa515e3ee08ef Mon Sep 17 00:00:00 2001 From: Brad Pitcher Date: Thu, 4 Jul 2024 22:32:19 -0500 Subject: [PATCH] fix: require python > 3.7 Fixes the dependency resolution issue during poetry install ``` The current project's Python requirement (>=3.7) is not compatible with some of the required packages Python requirement: - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >=3.6,<4.0, so it will not be satisfied for Python >=4.0 - portray requires Python >3.7, so it will not be satisfied for Python 3.7 ``` --- {{cookiecutter.project_name}}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/pyproject.toml b/{{cookiecutter.project_name}}/pyproject.toml index a1b2356..17bfdc3 100644 --- a/{{cookiecutter.project_name}}/pyproject.toml +++ b/{{cookiecutter.project_name}}/pyproject.toml @@ -7,7 +7,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = ">=3.7" +python = ">3.7" [tool.poetry.dev-dependencies] vulture = ">=1.0"