From 03a0f38131048eec30a470bc86f22dc1ad2542f6 Mon Sep 17 00:00:00 2001 From: Romain Beaumont Date: Thu, 17 Nov 2022 21:56:58 +0100 Subject: [PATCH] fix setup.py _read_reqs --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 367f64dee..00ab400a6 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ long_description = f.read() def _read_reqs(relpath): - fullpath = os.path.join(os.path.dirname(__file__), relpath) + fullpath = path.join(path.dirname(__file__), relpath) with open(fullpath) as f: return [s.strip() for s in f.readlines() if (s.strip() and not s.startswith("#"))]