From be86b8f949d30eb9bd10c7254d78c3d271ba1456 Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Thu, 9 May 2024 08:18:36 -0400 Subject: [PATCH] Add VERSION to raft-ann-bench package (#2299) https://github.com/rapidsai/raft/pull/2285 added dynamic versioning to `pyproject.toml` for `raft-ann-bench`, but did not properly copy in the `VERSION` file. Copy it in with `tool.setuptools.package-data`. Authors: - Kyle Edwards (https://github.com/KyleFromNVIDIA) Approvers: - Divye Gala (https://github.com/divyegala) - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/raft/pull/2299 --- python/raft-ann-bench/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/raft-ann-bench/pyproject.toml b/python/raft-ann-bench/pyproject.toml index 1348343db3..9bb7ae0468 100644 --- a/python/raft-ann-bench/pyproject.toml +++ b/python/raft-ann-bench/pyproject.toml @@ -35,7 +35,7 @@ Homepage = "https://github.com/rapidsai/raft" where = ["src"] [tool.setuptools.package-data] -"*" = ["*.*"] +"*" = ["*.*", "VERSION"] [tool.isort] line_length = 79