Skip to content

Commit

Permalink
Remove entry-points from raft-ann-bench
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 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
  • Loading branch information
benfred committed Oct 18, 2023
1 parent 50a9081 commit bb82c4b
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 bb82c4b

Please sign in to comment.