Skip to content

Commit

Permalink
chore: missing import in build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Jul 30, 2024
1 parent c462d88 commit 13bb3de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import shutil
from pathlib import Path

from Cython.Build import cythonize, build_ext
from setuptools import Distribution
from Cython.Build import cythonize

# import Cython.Compiler.Options
# Cython.Compiler.Options.cimport_from_pyx = True
Expand Down Expand Up @@ -35,5 +35,5 @@

for output in cmd.get_outputs():
relative_extension = os.path.relpath(output, cmd.build_lib)
print(f"Copying {output} to {relative_extension}")
print(f"Copying {output} to {relative_extension}") # noqa: T201
shutil.copyfile(output, relative_extension)

0 comments on commit 13bb3de

Please sign in to comment.