Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Update setup.py (#4723)
Browse files Browse the repository at this point in the history
  • Loading branch information
piiswrong committed Jan 19, 2017
1 parent 571b9a4 commit 25a056c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/setup.py
Expand Up @@ -23,7 +23,11 @@


def config_cython():
"""Try to configure cython and retyurn cython configuration"""
"""Try to configure cython and return cython configuration"""
if os.name == 'nt':
print("WARNING: Cython is not supported on Windows, will compile without cython module")
return []

try:
from Cython.Build import cythonize
# from setuptools.extension import Extension
Expand Down

0 comments on commit 25a056c

Please sign in to comment.