From a479cfd0e244328d2f557d6860345c7a208b35e9 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 39718a14..2e34efc1 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() def get_version():