Skip to content

Commit

Permalink
Remove dynamic entry-points from raft-ann-bench (#1910)
Browse files Browse the repository at this point in the history
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 version.

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

Authors:
  - Ben Frederickson (https://github.com/benfred)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)

URL: #1910
  • Loading branch information
benfred authored Oct 19, 2023
1 parent eb96fc6 commit 6fdb886
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/raft-ann-bench/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6fdb886

Please sign in to comment.