Skip to content
Snippets Groups Projects
Commit 344a6dc5 authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Let setuptools use its own build_ext command

Required for editable installation
parent 6db6d922
No related branches found
No related tags found
1 merge request!716Fix editable install in CI
......@@ -4,7 +4,6 @@ from subprocess import check_output
import numpy
from Cython.Build import cythonize
from Cython.Distutils import build_ext
from setuptools import find_packages, setup
from setuptools.extension import Extension
......@@ -143,7 +142,6 @@ setup(
},
cmdclass={
"build": PreInstallCommand,
"build_ext": build_ext,
},
ext_modules=cythonize(ext_modules, language_level=3),
install_requires=install_requires,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment