From 4a53b09eb78904a51394895e7a8448474ec53e35 Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Wed, 27 May 2026 23:09:34 -0700 Subject: [PATCH] [codex] Remove Python SDK language classifiers (#24868) ## Summary - Remove the Python language classifiers from the Python SDK package metadata. - Keep `requires-python = ">=3.10"` as the package's interpreter compatibility constraint. - Avoid presenting a curated version-support list in PyPI metadata. ## Validation - Not run locally; relying on online CI for this metadata-only change. ## Release - Land this change before publishing the next Python SDK beta. --- sdk/python/pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sdk/python/pyproject.toml b/sdk/python/pyproject.toml index 6c16ae302..1557e0846 100644 --- a/sdk/python/pyproject.toml +++ b/sdk/python/pyproject.toml @@ -14,11 +14,6 @@ keywords = ["codex", "sdk", "llm", "ai", "agents"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = ["pydantic>=2.12", "openai-codex-cli-bin==0.132.0"]