From 696fbc63b2eb0bd2e760855ed50de539f1a17373 Mon Sep 17 00:00:00 2001 From: Miguel Ventura Date: Tue, 12 Jul 2022 17:58:30 +0100 Subject: [PATCH] Allow any python in the 3.x series >=3.7 Before converting from setup.py, this upper bound didn't exist. There's no reason to cap at 3.10. This breaks installations on other poetry projects defined with Python=^3.7 and would force updating this file for every new python version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d3e12b6a..66941d57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ packages = [ ] [tool.poetry.dependencies] -python = ">= 3.7, < 3.11" +python = ">= 3.7, < 4.0" typing-extensions = "^4.1.1" [tool.poetry.dev-dependencies]