From: Daniele Varrazzo Date: Fri, 28 Jun 2024 16:35:26 +0000 (+0100) Subject: style: shorter line in pyproject.toml X-Git-Tag: 3.2.0~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F846%2Fhead;p=thirdparty%2Fpsycopg.git style: shorter line in pyproject.toml --- diff --git a/psycopg_c/pyproject.toml b/psycopg_c/pyproject.toml index 1b27b44d5..55c0504d6 100644 --- a/psycopg_c/pyproject.toml +++ b/psycopg_c/pyproject.toml @@ -1,5 +1,9 @@ [build-system] -requires = ["setuptools >= 49.2.0", "wheel >= 0.37", "tomli >= 2.0.1 ; python_version<'3.11'"] +requires = [ + "setuptools >= 49.2.0", + "wheel >= 0.37", + "tomli >= 2.0.1; python_version < '3.11'", +] # The cython_backend is a build backend adding a Cython dependency if the c # source must be build from pxd files (when building from git checkout), and