From 1e2f270469c61337ef7f5f92ab93f691e5d86492 Mon Sep 17 00:00:00 2001 From: Muhammad Moinur Rahman Date: Thu, 22 May 2025 15:42:38 +0200 Subject: libucl: Update to 0.9.2 Approved by: bapt Differential Revision: https://reviews.freebsd.org/D50363 --- python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/setup.py') diff --git a/python/setup.py b/python/setup.py index 8da832bac381..c30395d97b5a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -41,12 +41,12 @@ template = 'python/MANIFEST.in' # distutils assume setup.py is in the root of the project # we need to include C source from the parent so trick it in_ucl_root = 'setup.py' in os.listdir('python') -if in_ucl_root: +if not os.path.isfile('setup.py') and in_ucl_root: os.link('python/setup.py', 'setup.py') setup( name = 'ucl', - version = '0.8.1', + version = '0.8.2', description = 'ucl parser and emitter', ext_modules = [uclmodule], template=template, # no longer supported with setuptools but doesn't hurt -- cgit v1.3