From e2d4f2cdb94a7d5dcb0ee51ae9c6962000b4786f Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Mon, 22 Jul 2024 15:16:38 -0600 Subject: [PATCH] Temporary fix for setuptools 70.x --- 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 74773764..903b0556 100755 --- a/scripts/ci/install-dev-deps +++ b/scripts/ci/install-dev-deps @@ -27,5 +27,5 @@ 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")