From edb7c7a0238c94e2e9c4b69409eef9a0e04f9dff Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 20 Jan 2022 14:37:13 +0000 Subject: [PATCH] Typo fixed --- psycopg_c/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/psycopg_c/setup.py b/psycopg_c/setup.py index 25cf6d9b9..c6da3a159 100644 --- a/psycopg_c/setup.py +++ b/psycopg_c/setup.py @@ -47,8 +47,8 @@ class psycopg_build_ext(build_ext): def _setup_ext_build(self) -> None: cythonize = None - # In the sdist there are not .pyx, only c, so we don't need Cython - # Otherwise Cython is a requirement and is be used to compile pyx to c + # In the sdist there are not .pyx, only c, so we don't need Cython. + # Otherwise Cython is a requirement and it is used to compile pyx to c. if os.path.exists("psycopg_c/_psycopg.pyx"): from Cython.Build import cythonize -- 2.47.2