commit 91d214705a3b4cd5aced8ac22c5b20e16b859ea6
parent 2103377dcd42c4dae18d14c28d72bc6013b01d8c
Author: Beatriz Rizental <bea@torproject.org>
Date: Tue, 3 Feb 2026 21:22:26 +0000
Bug 2013358: Drop Python <3.13 requirement from manifestparser.r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D281036
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/testing/mozbase/manifestparser/setup.py b/testing/mozbase/manifestparser/setup.py
@@ -25,6 +25,7 @@ setup(
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.13",
],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords="mozilla manifests",
@@ -39,5 +40,5 @@ setup(
[console_scripts]
manifestparser = manifestparser.cli:main
""",
- python_requires=">=3.8, <3.13",
+ python_requires=">=3.8",
)