Merge remote-tracking branch 'origin/stable'

This commit is contained in:
David Lord 2024-11-13 08:43:48 -08:00
commit 22c48a738b
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
9 changed files with 23 additions and 6 deletions

View file

@ -3,8 +3,9 @@ name = "js_example"
version = "1.1.0"
description = "Demonstrates making AJAX requests to Flask."
readme = "README.rst"
license = {file = "LICENSE.rst"}
license = {file = "LICENSE.txt"}
maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"}]
classifiers = ["Private :: Do Not Upload"]
dependencies = ["flask"]
[project.urls]

View file

@ -5,7 +5,7 @@ from flask import template_rendered
@pytest.mark.parametrize(
("path", "template_name"),
(
("/", "xhr.html"),
("/", "fetch.html"),
("/plain", "xhr.html"),
("/fetch", "fetch.html"),
("/jquery", "jquery.html"),