From: layday Date: Wed, 21 Feb 2024 20:13:13 +0000 (+0200) Subject: Replace non-standard Python plat env marker (#11035) X-Git-Tag: rel_2_0_28~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc6e958d39400f098df079e7320ccdeb5362a0cb;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Replace non-standard Python plat env marker (#11035) Fixes #11034. (cherry picked from commit 78d0a24f98e3a7f3ea76acf5e47ace848adc2e2b) Change-Id: I43e5229612e6a881e547db08780f3223dfe1c5c3 --- 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]