Skip to content

Commit 2a0c80d

Browse files
committed
Fix pyproject.toml use of inline tables
Make project.urls a standard table so we can use line breaks
1 parent a880b3f commit 2a0c80d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

m4/pyproject_toml_metadata.m4

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ classifiers = [
1717
"Programming Language :: Python :: Implementation :: CPython",
1818
"Topic :: Scientific/Engineering :: Mathematics",
1919
]
20-
urls = {download = "https://doc.sagemath.org/html/en/installation/index.html",
21-
"release notes" = "https://github.com/sagemath/sage/releases",
22-
source = "https://github.com/sagemath/sage",
23-
documentation = "https://doc.sagemath.org",
24-
homepage = "https://www.sagemath.org",
25-
tracker = "https://github.com/sagemath/sage/issues"}
2620
requires-python = ">=3.9, <3.13"
21+
22+
[project.urls]
23+
download = "https://doc.sagemath.org/html/en/installation/index.html"
24+
"release notes" = "https://github.com/sagemath/sage/releases"
25+
source = "https://github.com/sagemath/sage"
26+
documentation = "https://doc.sagemath.org"
27+
homepage = "https://www.sagemath.org"
28+
tracker = "https://github.com/sagemath/sage/issues"

0 commit comments

Comments
 (0)