Skip to content

Commit 629d13a

Browse files
authored
Remove cython from install_requires (#235)
1 parent b1d9e1f commit 629d13a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,12 @@
2929

3030
import setuptools.command.install as orig_install
3131
import setuptools.command.develop as orig_develop
32+
3233
from setuptools import setup, Extension, find_packages
3334
from Cython.Build import cythonize
3435

3536
import numpy as np
3637

37-
requirements = [
38-
"cython",
39-
]
40-
4138
IS_WIN = False
4239
IS_MAC = False
4340
IS_LIN = False
@@ -220,8 +217,8 @@ def _get_cmdclass():
220217
packages=find_packages(include=["*"]),
221218
include_package_data=True,
222219
ext_modules=extensions(),
223-
setup_requires=requirements,
224-
install_requires=requirements,
220+
zip_safe=False,
221+
setup_requires=["Cython"],
225222
keywords="dpctl",
226223
classifiers=[
227224
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)