Skip to content

Commit

Permalink
sagemathgh-38667: 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

Caused by sagemath#38577

<!-- ^ Please provide a concise and informative title. -->
<!-- ^ Don't put issue numbers in the title, do this in the PR
description below. -->
<!-- ^ For example, instead of "Fixes sagemath#12345" use "Introduce new method
to calculate 1 + 2". -->
<!-- v Describe your changes below in detail. -->
<!-- v Why is this change required? What problem does it solve? -->
<!-- v If this PR resolves an open issue, please link to it here. For
example, "Fixes sagemath#12345". -->



### 📝 Checklist

<!-- Put an `x` in all the boxes that apply. -->

- [ ] The title is concise and informative.
- [ ] The description explains in detail what this PR is about.
- [ ] I have linked a relevant issue or discussion.
- [ ] I have created tests covering the changes.
- [ ] I have updated the documentation and checked the documentation
preview.

### ⌛ Dependencies

<!-- List all open PRs that this PR logically depends on. For example,
-->
<!-- - sagemath#12345: short description why this is a dependency -->
<!-- - sagemath#34567: ... -->
    
URL: sagemath#38667
Reported by: Volker Braun
Reviewer(s):
  • Loading branch information
Release Manager committed Sep 16, 2024
2 parents 68ad182 + 2a0c80d commit fd0efdf
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 fd0efdf

Please sign in to comment.