From 79681b9213053a7f8731393d1686d30504591446 Mon Sep 17 00:00:00 2001 From: jonathan343 <43360731+jonathan343@users.noreply.github.com> Date: Fri, 19 Jul 2024 10:56:10 -0700 Subject: [PATCH] pin setuptools in ci for python >= 3.12 (#3223) --- scripts/ci/install-dev-deps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/install-dev-deps b/scripts/ci/install-dev-deps index 061a92645a..b027c0120e 100755 --- a/scripts/ci/install-dev-deps +++ b/scripts/ci/install-dev-deps @@ -27,6 +27,6 @@ def run(command): if __name__ == "__main__": with cd(REPO_ROOT): if sys.version_info[:2] >= (3, 12): - run("pip install setuptools") + run("pip install setuptools==67.8.0") run("pip install -r requirements-dev-lock.txt")