From 34a9dffc10da10a4628dede70baf02ad009b8727 Mon Sep 17 00:00:00 2001 From: Michael Overmeyer Date: Sat, 9 Nov 2024 21:03:32 -0500 Subject: [PATCH] Pin the version of `setuptools` used --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 522b628..39c22fc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,9 @@ jobs: - checkout - run: name: Test - command: python setup.py test + command: | + pip install --force-reinstall 'setuptools==71.1.0' + python setup.py test docker: - image: cimg/python:<>