Files
Alex Hochheiden 0448774cb7 Bug 1966763 - Run ./mach vendor python --upgrade with the new minimum Python version 3.9 to establish a new baseline r=firefox-build-system-reviewers,mach-reviewers,glandium,ahal
Updated aiohappyeyeballs v2.4.4 -> v2.6.1
Updated aiosignal v1.3.1 -> v1.3.2
Updated filelock v3.16.1 -> v3.18.0
Updated frozenlist v1.5.0 -> v1.7.0
Updated markupsafe v2.0.1 -> v3.0.2
Updated mozilla-taskgraph v3.3.0 -> v3.3.1
Updated multidict v6.1.0 -> v6.4.4
Updated platformdirs v4.3.6 -> v4.3.8
Updated propcache v0.2.0 -> v0.3.2
Updated requests v2.32.3 -> v2.32.4
Updated types-python-dateutil v2.9.0.20241206 -> v2.9.0.20250516
Updated yarl v1.15.2 -> v1.20.1
Updated zipp v3.20.2 -> v3.23.0

Differential Revision: https://phabricator.services.mozilla.com/D249673
2025-06-13 17:39:58 +00:00

87 lines
1.9 KiB
TOML

[project]
name = "MarkupSafe"
version = "3.0.2"
description = "Safely add untrusted strings to HTML/XML markup."
readme = "README.md"
license = { file = "LICENSE.txt" }
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",
"Topic :: Text Processing :: Markup :: HTML",
"Typing :: Typed",
]
requires-python = ">=3.9"
[project.urls]
Donate = "https://palletsprojects.com/donate"
Documentation = "https://markupsafe.palletsprojects.com/"
Changes = "https://markupsafe.palletsprojects.com/changes/"
Source = "https://github.com/pallets/markupsafe/"
Chat = "https://discord.gg/pallets"
[build-system]
requires = ["setuptools>=70.1"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
]
[tool.coverage.run]
branch = true
source = ["markupsafe", "tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.mypy]
python_version = "3.9"
files = ["src/markupsafe", "tests"]
show_error_codes = true
pretty = true
strict = true
[[tool.mypy.overrides]]
module = [
"argcomplete.*",
]
ignore_missing_imports = true
[tool.pyright]
pythonVersion = "3.9"
include = ["src/markupsafe", "tests"]
typeCheckingMode = "basic"
[tool.ruff]
src = ["src"]
fix = true
show-fixes = true
output-format = "full"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warning
]
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false
[tool.gha-update]
tag-only = [
"slsa-framework/slsa-github-generator",
]