]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Typo fixed
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 20 Jan 2022 14:37:13 +0000 (14:37 +0000)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 20 Jan 2022 14:37:13 +0000 (14:37 +0000)
psycopg_c/setup.py

index 25cf6d9b95b62c8f3837d20c6e4acc152c5d7113..c6da3a1591d8263919b84110cae2cea8e67ba11b 100644 (file)
@@ -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