python-sphinx-theme-alabaster/0001-Declare-support-for-Python-3.8-only.patch
zhang-liang-pengkun bde76215a6 Declare support for Python 3.8+ only
Signed-off-by: zhang-liang-pengkun <zhangliangpengkun@xfusion.com>
2023-11-16 15:32:56 +08:00

40 lines
1.5 KiB
Diff

From a6ed2fe2edb1cc433834a11b0c700c912164d885 Mon Sep 17 00:00:00 2001
From: Adam Turner <9087854+aa-turner@users.noreply.github.com>
Date: Fri, 6 Jan 2023 21:47:42 +0000
Subject: [PATCH] Declare support for Python 3.8+ only
---
setup.py | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/setup.py b/setup.py
index b7a1779..d1644e7 100644
--- a/setup.py
+++ b/setup.py
@@ -29,16 +29,13 @@ setup(
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
- "Programming Language :: Python",
- "Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.6",
- "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.2",
- "Programming Language :: Python :: 3.3",
- "Programming Language :: Python :: 3.4",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3 :: Only",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
--
2.39.0.windows.2