From ba984bd2bf34d4ae850361b0974ac2c870e8eec7 Mon Sep 17 00:00:00 2001 From: James Gerity Date: Wed, 4 Oct 2023 22:13:59 -0400 Subject: [PATCH] build: update setuptools pin to avoid 3.12 bug Versions of setuptools before 66.1 used deprecated portions of `pkgutil` that were removed in Python 3.12. More information: https://github.com/pypa/setuptools/issues/3631 https://setuptools.pypa.io/en/latest/history.html#v66-1-0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f0781e80e..aecf8d60f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools~=63.0", "wheel"] +requires = ["setuptools~=66.1", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools]