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