Skip to content

Commit 777966c

Browse files
committed
fix: Use table format for license field in pyproject.toml
The newer string format for license (license = "Apache-2.0") requires setuptools >= 77.0.0. Changed to table format (license = {text = "Apache-2.0"}) to maintain compatibility with setuptools >= 61.0. Removed license-files field as setuptools automatically includes LICENSE file.
1 parent ab6a63e commit 777966c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ name = "singlestoredb"
77
version = "1.15.8"
88
description = "Interface to the SingleStoreDB database and workspace management APIs"
99
readme = {file = "README.md", content-type = "text/markdown"}
10-
license = "Apache-2.0"
11-
license-files = ["LICENSE"]
10+
license = {text = "Apache-2.0"}
1211
authors = [
1312
{name = "SingleStore", email = "[email protected]"}
1413
]

0 commit comments

Comments
 (0)