We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b6198c commit 9be18e0Copy full SHA for 9be18e0
setup.py
@@ -16,7 +16,6 @@
16
from sysconfig import get_config_vars
17
18
import numpy
19
-from pkg_resources import parse_version
20
from setuptools import (
21
Command,
22
Extension,
@@ -46,7 +45,7 @@ def is_platform_mac():
46
45
)
47
from Cython.Build import cythonize
48
49
- _CYTHON_INSTALLED = parse_version(_CYTHON_VERSION) >= parse_version(min_cython_ver)
+ _CYTHON_INSTALLED = True
50
except ImportError:
51
_CYTHON_VERSION = None
52
_CYTHON_INSTALLED = False
0 commit comments