From fb0efb33aa87e1d824b3f5f9c19631eeee7aea2d 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 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 a5b9ac664..bc2d00de1 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]