From bb82c4bbc508d601a76d7e0e77473ee3afde236c Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Wed, 18 Oct 2023 09:25:29 -0700 Subject: [PATCH] Remove entry-points from raft-ann-bench Building raft-ann-bench can throw a ``` distutils.errors.DistutilsOptionError: No configuration found for dynamic 'entry-points'. Some dynamic fields need to be specified via `tool.setuptools.dynamic` others must be specified via the equivalent attribute in `setup.py`. ``` error sometimes depending on distutils reversion. This is becase we were specifying dynamic entry-points, but not including the relevant `tool.setuptools.dynamic` section in pyproject.toml. Remove this to allow building --- python/raft-ann-bench/pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/python/raft-ann-bench/pyproject.toml b/python/raft-ann-bench/pyproject.toml index 6562937548..0cb36deaa7 100644 --- a/python/raft-ann-bench/pyproject.toml +++ b/python/raft-ann-bench/pyproject.toml @@ -27,7 +27,6 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ] -dynamic = ["entry-points"] [project.urls] Homepage = "https://github.com/rapidsai/raft"