Skip to content

Commit 5b38f39

Browse files
author
y-p
committed
BUG: fix path reolution in print_versions.py
1 parent 1804bc3 commit 5b38f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/print_versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def show_versions():
66
import os
77
fn = __file__
88
this_dir = os.path.dirname(fn)
9-
pandas_dir = os.path.dirname(this_dir)
9+
pandas_dir = os.path.abspath(os.path.join(this_dir,".."))
1010
sv_path = os.path.join(pandas_dir, 'pandas', 'util',
1111
'print_versions.py')
1212
return subprocess.check_call(['python', sv_path])

0 commit comments

Comments
 (0)