]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Add missing trailing commas to Python version classifiers 3696/head
authorKobi Hikri <kobi.hikri@gmail.com>
Wed, 15 Jul 2026 10:47:25 +0000 (13:47 +0300)
committerKobi Hikri <kobi.hikri@gmail.com>
Wed, 15 Jul 2026 10:47:25 +0000 (13:47 +0300)
Without the commas, adjacent string literals concatenate into a single invalid
classifier (e.g. 'Programming Language :: Python :: 3.10Programming Language ::
Python :: 3.11...'). Fixes the generated lines and the cog template so it
doesn't regress on the next cog run.

setup.py

index 62eca36c18e3f5ed025390305e476e9d7428dafa..a4dbb9657bedf6327397fd0f85403a7dc338e1a4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -120,13 +120,13 @@ setuptools.setup(
         "Programming Language :: Python :: 3",
         # [[[cog
         #   for minor in range(int(min_python_minor), int(max_python_minor) + 1):
-        #     cog.outl(f"\"Programming Language :: Python :: 3.{minor}\"")
+        #     cog.outl(f"\"Programming Language :: Python :: 3.{minor}\",")
         #   ]]]
-        "Programming Language :: Python :: 3.10"
-        "Programming Language :: Python :: 3.11"
-        "Programming Language :: Python :: 3.12"
-        "Programming Language :: Python :: 3.13"
-        "Programming Language :: Python :: 3.14"
+        "Programming Language :: Python :: 3.10",
+        "Programming Language :: Python :: 3.11",
+        "Programming Language :: Python :: 3.12",
+        "Programming Language :: Python :: 3.13",
+        "Programming Language :: Python :: 3.14",
         # [[[end]]]
         "Programming Language :: Python :: Implementation :: CPython",
         "Programming Language :: Python :: Implementation :: PyPy",