Commit e2e81683 authored by brizental's avatar brizental Committed by brizental
Browse files

Bug 2013358: Drop Python <3.13 requirement from manifestparser.r=ahal

parent bd2b83d9
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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",
)