From 09889330a296f6767734b42381693e5602419f36 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 20 Feb 2024 18:37:19 +0100 Subject: [PATCH] MINOR: [Dev][Archery] Reinstate version constraint on setuptools_scm for comment bot (#40162) The comment bot depends on an internal setuptools_scm API that was changed in setuptools_scm 8. We therefore need to reinstate the Archery version constraint that was removed in https://github.com/apache/arrow/pull/40150 See example failure at https://github.com/apache/arrow/actions/runs/7976567301/job/21777437575 Authored-by: Antoine Pitrou Signed-off-by: Antoine Pitrou --- dev/archery/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/archery/setup.py b/dev/archery/setup.py index 02a8b34299b1f..2ecc72e04e8aa 100755 --- a/dev/archery/setup.py +++ b/dev/archery/setup.py @@ -30,7 +30,7 @@ extras = { 'benchmark': ['pandas'], 'crossbow': ['github3.py', jinja_req, 'pygit2>=1.6.0', 'requests', - 'ruamel.yaml', 'setuptools_scm'], + 'ruamel.yaml', 'setuptools_scm<8.0.0'], 'crossbow-upload': ['github3.py', jinja_req, 'ruamel.yaml', 'setuptools_scm'], 'docker': ['ruamel.yaml', 'python-dotenv'],