From 78d0a24f98e3a7f3ea76acf5e47ace848adc2e2b Mon Sep 17 00:00:00 2001 From: layday Date: Wed, 21 Feb 2024 22:13:13 +0200 Subject: [PATCH] Replace non-standard Python plat env marker (#11035) Fixes #11034. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 62d07d5fe0..bc9e5706ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ build-backend = "setuptools.build_meta" requires = [ "setuptools>=61.2", - "cython>=0.29.24; python_implementation == 'CPython'", # Skip cython when using pypy + "cython>=0.29.24; platform_python_implementation == 'CPython'", # Skip cython when using pypy ] -- 2.47.2