From cc6e958d39400f098df079e7320ccdeb5362a0cb 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. (cherry picked from commit 78d0a24f98e3a7f3ea76acf5e47ace848adc2e2b) Change-Id: I43e5229612e6a881e547db08780f3223dfe1c5c3 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3cdf49301f..780c9bf689 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ build-backend = "setuptools.build_meta" requires = [ "setuptools>=47", - "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 ] [tool.black] -- 2.47.2