From 578b97bbb5872a25011eb3638c66e76761794414 Mon Sep 17 00:00:00 2001 From: Sondre Sortland Date: Tue, 30 Jan 2024 12:07:59 +0100 Subject: [PATCH] Improve check for Python version Co-authored-by: Zohar Malamant --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 14116062795..51510db1be0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ "setuptools<64; python_version < '3.12'", - "setuptools; python_version == '3.12'", + "setuptools; python_version >= '3.12'", "setuptools_scm[toml]>=6.2", "wheel", "scikit-build",