From a7e2e23f543bf8be5f3c72ca78865a53604fd46d Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Mon, 13 Oct 2025 12:21:47 +0200 Subject: [PATCH] dont manually call setuptools_scm - its integrated setuptools_scm automatically set the version attribute - manually setting it wrong --- setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/setup.py b/setup.py index 326dac8ed0..60e39674a5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ import numpy from setuptools import Extension, setup -from setuptools_scm import get_version def read(rel_path: str) -> str: @@ -14,10 +13,7 @@ def read(rel_path: str) -> str: NUMPY_INCLUDE = numpy.get_include() -VERSION = get_version(root=".", relative_to=__file__) - setup( - version=VERSION, ext_modules=[ Extension( "qlib.data._libs.rolling",