From 7df97c7368d1e0925cd2c35d2da8a6fe24b6b54d Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 20 Feb 2024 18:26:38 +0100 Subject: [PATCH] MINOR: [CI] Reinstate version constraint on setuptools_scm for comment bot The comment bot depends on an internal setuptools_scm API that was changed in setuptools_scm 8. See example failure at https://github.com/apache/arrow/actions/runs/7976567301/job/21777437575 --- 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 02a8b34299b..2ecc72e04e8 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'],