From c74e0fd7c65beba873682c108045c75f5f70b8aa Mon Sep 17 00:00:00 2001 From: miro Date: Tue, 15 Oct 2024 05:14:33 +0100 Subject: [PATCH] fix:long description semver automations fail if dont use full path for README --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3552a08..4a7623c 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def find_resource_files(): return package_data -with open("README.md", "r") as f: +with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r") as f: long_description = f.read()