Correct classifier typo in pyproject.toml

Warehouse (PyPI) validates package metadata on upload, including
checking that all classifiers are valid and exist in the
https://pypi.org/classifiers/ list. The upload for Manila
22.0.0.0rc1 failed with:

    400 Bad Request "Intended Audience :: System Admininstrators" is
    not a valid classifier.

I confirmed that a new build with this patch is accepted by manually
uploading to test.pypi.org so it seems to have been the only typo.

Change-Id: Ic36491a80c2d395936c24d366f8fe347ad408571
Signed-off-by: Jeremy Stanley <fungi@yuggoth.org>
This commit is contained in:
Jeremy Stanley
2026-03-13 15:30:17 +00:00
parent 61eecb6746
commit c0151ac7c6
+1 -1
View File
@@ -16,7 +16,7 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: OpenStack",
"Intended Audience :: Information Technology",
"Intended Audience :: System Admininstrators",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",