From b6c35ae7bc2e33a186d024f2a40c9e2ab32a56ca Mon Sep 17 00:00:00 2001 From: Emmanuel Ojeah Date: Thu, 4 Jul 2024 10:35:57 +0100 Subject: [PATCH] version v2.2.1 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1e6f3d2..3200728 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,10 @@ from setuptools import find_packages from setuptools import setup -from pyramid_zipkin.version import __version__ as version +with open('pyramid_zipkin/version.py') as f: + exec(f.read()) + +version = locals()['__version__'] setup( name='pyramid_zipkin',