From af605c89fd7c76ebd6c2b244970db8f3d9056f2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ronald=20Lencevi=C4=8Dius?= Date: Thu, 27 Oct 2022 12:03:52 -0700 Subject: [PATCH] Updated dependency list for Python 3.11 Takes into account scikit-learn 1.1.3 release which creates wheels for Python 3.11: scikit-learn/scikit-learn#24446 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5d77c3a..4823f9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,10 +24,10 @@ classifiers = [ "Bug Tracker" = "https://github.com/392781/scikit-ntk/issues" [tool.poetry.dependencies] -python = ">=3.7, <3.11" +python = "^3.7" scikit-learn = [ {version = "^1.0.0", python = ">=3.7,<3.10"}, - {version = "^1.1", python = ">=3.10"} + {version = "^1.1.3", python = ">=3.10"} ] [tool.poetry.group.dev.dependencies]