From 3a2ebf4ba37a2909c529ff07bfac6be37a2d63fc Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Fri, 15 Jul 2022 15:22:30 +0200 Subject: [PATCH] Use inline table syntax for license key This fixes a problem with old pip version that use an outdated TOML parser. Closes: #57 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6005d55c..f42c9fac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ version = "4.3.0" description = "Backported and Experimental Type Hints for Python 3.7+" readme = "README.md" requires-python = ">=3.7" -license.file = "LICENSE" +license = { file = "LICENSE" } keywords = [ "annotations", "backport",