From c0151ac7c67737b20822936ebd744235512ff8e8 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Fri, 13 Mar 2026 15:30:17 +0000 Subject: [PATCH] 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 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a83a69f6da..8fe60651e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",