Navigation Menu

Skip to content

Commit

Permalink
BLD/BUG: Exclusions path separator for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadFulton committed Feb 25, 2017
1 parent b62f5ef commit 8b409cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -450,7 +450,8 @@ def run(self):
except ImportError:
for name, data in statespace_ext_data.items():
path = '.'.join([data["name"].split('.')[0], 'pyx.in'])
append_cython_exclusion(path, CYTHON_EXCLUSION_FILE)
append_cython_exclusion(path.replace('/', os.path.sep),
CYTHON_EXCLUSION_FILE)

extensions = []
for name, data in ext_data.items():
Expand Down

0 comments on commit 8b409cc

Please sign in to comment.