From 5d066b1db84fa29bfc6f584bc2a47c349550ab59 Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 27 Mar 2026 07:55:11 +0100 Subject: [PATCH] FIX: Bot node server should ONLY have Python 3.13.5 classifier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ CORRECTED PYTHON CLASSIFIERS: - REMOVED: Programming Language :: Python :: 3.11 (not installed) - REMOVED: Programming Language :: Python :: 3.12 (not installed) - UPDATED: Programming Language :: Python :: 3.13 → 3.13.5 (exact version) - KEPT: Programming Language :: Python :: 3 (generic) - KEPT: requires-python = >=3.13.5 (correct) 🔍 ROOT CAUSE: Previous commit a0e330d incorrectly removed Python 3.13.5 as invalid and added Python 3.11/3.12 which are not installed on this server. ✅ SYSTEM REALITY: - Only Python 3.13.5 is installed on aitbc server - No Python 3.11 or 3.12 packages available - CI/CD workflows all use Python 3.13.5 - Project requires Python >=3.13.5 🎯 ALIGNMENT: - pyproject.toml now matches system reality - No false claims about unsupported Python versions - Consistent with requires-python constraint - Aligns with CI/CD configuration --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a10a60ea..db28bba0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -135,9 +135,7 @@ classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.13.5", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Distributed Computing",