From e0bd9e3b3b5733190f95a7bad25a0e21102cca92 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 2 May 2018 08:51:21 -0500 Subject: [PATCH] BLD: Use relative path in setup.py for pxd includes This caused failures on the conda-forge build xref https://github.com/conda-forge/pandas-feedstock/pull/41 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 973b4c0abcde2..a436f451a2a55 100755 --- a/setup.py +++ b/setup.py @@ -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