From bb49565bc5c82d900400cdc121d5681c8305993f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 28 Jun 2023 17:26:05 +0200 Subject: [PATCH] Allow any version of Python in metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://iscinumpy.dev/post/bound-version-constraints/#pinning-the-python-version-is-special, and discussion in https://discuss.python.org/t/requires-python-upper-limits/12663?u=astrojuanlu, as well as practical problems with leaving the version cap on in https://github.com/kedro-org/kedro/issues/2270#issuecomment-1611641812. Signed-off-by: Juan Luis Cano Rodríguez --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ec06b75d5f..0421b726c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ {name = "Kedro"} ] description = "Kedro helps you build production-ready data and analytics pipelines" -requires-python = ">=3.7, <3.11" +requires-python = ">=3.7" keywords = [ "pipelines", "machine learning",