diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 675b2f9f..e5b1591f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -11,3 +11,4 @@ python: sphinx: builder: dirhtml fail_on_warning: true + configuration: docs/conf.py diff --git a/CHANGES.rst b/CHANGES.rst index f3f51b2d..04ab67a0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,8 @@ Version 3.1.0 Unreleased +- fix(pyproject): set project.license to the right value. :issue:`488` +- fix(readthedocs): add missing sphinx.configuration key to .readthedocs.yml :issue:`490` Version 3.0.2 ------------- diff --git a/pyproject.toml b/pyproject.toml index 2b6de913..7ab6110b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,13 +3,12 @@ name = "MarkupSafe" version = "3.1.0.dev" description = "Safely add untrusted strings to HTML/XML markup." readme = "README.md" -license = { file = "LICENSE.txt" } +license = "BSD-3-Clause" maintainers = [{ name = "Pallets", email = "contact@palletsprojects.com" }] classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", - "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content",