Skip to content

Commit ff6ec11

Browse files
authored
Fix pyproject.toml license field (#2065)
Per PEP 621 this should be a table, not a string. This resolves failures installing on systems with newer setuptools (v61.3.0 or newer: https://setuptools.pypa.io/en/latest/history.html#v61-3-0). Signed-off-by: Joshua Lock <[email protected]>
1 parent e07fa27 commit ff6ec11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "hatchling.build"
77
name = "tuf"
88
description = "A secure updater framework for Python"
99
readme = "README.md"
10-
license = "MIT OR Apache-2.0"
10+
license = { text = "MIT OR Apache-2.0" }
1111
requires-python = ">=3.7"
1212
authors = [
1313
{ email = "[email protected]" },

0 commit comments

Comments
 (0)