From b5452d983970aec7f9fb660bbfda76f1ead0f7f1 Mon Sep 17 00:00:00 2001 From: lriggs Date: Thu, 28 Sep 2023 14:27:42 -0700 Subject: [PATCH] Update core.py --- dev/archery/archery/crossbow/core.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dev/archery/archery/crossbow/core.py b/dev/archery/archery/crossbow/core.py index d2fa2fc537811..6ebd2df5506b6 100644 --- a/dev/archery/archery/crossbow/core.py +++ b/dev/archery/archery/crossbow/core.py @@ -740,13 +740,11 @@ def get_version(root, **kwargs): subprojects, e.g. apache-arrow-js-XXX tags. """ from setuptools_scm.git import parse as parse_git_version - from setuptools_scm import Config # query the calculated version based on the git tags kwargs['describe_command'] = ( 'git describe --dirty --tags --long --match "apache-arrow-[0-9]*.*"' ) - kwargs['config'] = Config(root=root) version = parse_git_version(root, **kwargs) tag = str(version.tag)