Skip to content

Commit

Permalink
BLD: Use relative path in setup.py for pxd includes
Browse files Browse the repository at this point in the history
This caused failures on the conda-forge build

xref conda-forge/pandas-feedstock#41
  • Loading branch information
TomAugspurger committed May 2, 2018
1 parent 44ccca1 commit e0bd9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def srcpath(name=None, suffix='.pyx', subdir='src'):


def pxd(name):
return os.path.abspath(pjoin('pandas', name + '.pxd'))
return pjoin('pandas', name + '.pxd')


# args to ignore warnings
Expand Down

0 comments on commit e0bd9e3

Please sign in to comment.