Skip to content

Commit

Permalink
Fix pyproject.toml license field (#2065)
Browse files Browse the repository at this point in the history
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 <jlock@vmware.com>
  • Loading branch information
joshuagl committed Jul 26, 2022
1 parent e07fa27 commit ff6ec11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -7,7 +7,7 @@ build-backend = "hatchling.build"
name = "tuf"
description = "A secure updater framework for Python"
readme = "README.md"
license = "MIT OR Apache-2.0"
license = { text = "MIT OR Apache-2.0" }
requires-python = ">=3.7"
authors = [
{ email = "theupdateframework@googlegroups.com" },
Expand Down

0 comments on commit ff6ec11

Please sign in to comment.