From dcef53712fc151154cc783834ede174b95352660 Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Sun, 18 Dec 2022 00:03:26 +0100 Subject: [PATCH] fix keyerror setup py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb84e02..8fffc86 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ print("Using version: {str(os.environ['VERSION'])}") setuptools.setup( name="complib", - version=str(os.environ["VERSION"]), + version=str(os.environ.get('VERSION', "")), author="F-WuTs", author_email="joel.klimont@comp-air.at", description="",