Skip to content

Commit

Permalink
Fix pyproject.toml use of inline tables
Browse files Browse the repository at this point in the history
Make project.urls a standard table so we can use line breaks
  • Loading branch information
vbraun committed Sep 16, 2024
1 parent a880b3f commit 2a0c80d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions m4/pyproject_toml_metadata.m4
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Mathematics",
]
urls = {download = "https://doc.sagemath.org/html/en/installation/index.html",
"release notes" = "https://github.com/sagemath/sage/releases",
source = "https://github.com/sagemath/sage",
documentation = "https://doc.sagemath.org",
homepage = "https://www.sagemath.org",
tracker = "https://github.com/sagemath/sage/issues"}
requires-python = ">=3.9, <3.13"

[project.urls]
download = "https://doc.sagemath.org/html/en/installation/index.html"
"release notes" = "https://github.com/sagemath/sage/releases"
source = "https://github.com/sagemath/sage"
documentation = "https://doc.sagemath.org"
homepage = "https://www.sagemath.org"
tracker = "https://github.com/sagemath/sage/issues"

0 comments on commit 2a0c80d

Please sign in to comment.