Skip to content

Remove cython from install_requires #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,12 @@

import setuptools.command.install as orig_install
import setuptools.command.develop as orig_develop

from setuptools import setup, Extension, find_packages
from Cython.Build import cythonize

import numpy as np

requirements = [
"cython",
]

IS_WIN = False
IS_MAC = False
IS_LIN = False
Expand Down Expand Up @@ -220,8 +217,8 @@ def _get_cmdclass():
packages=find_packages(include=["*"]),
include_package_data=True,
ext_modules=extensions(),
setup_requires=requirements,
install_requires=requirements,
zip_safe=False,
setup_requires=["Cython"],
keywords="dpctl",
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down