38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 3eff1f68d0d957421421f57477e3961bcf61c849 Mon Sep 17 00:00:00 2001
|
|
From: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
|
|
Date: Fri, 6 Jan 2023 21:51:12 +0000
|
|
Subject: [PATCH] Declare support for Python 3.8+ only (#195)
|
|
|
|
---
|
|
setup.py | 13 ++++++---------
|
|
1 files changed, 4 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index b7a1779..d1644e7 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -29,16 +29,11 @@ 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 :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
"Topic :: Documentation",
|
|
--
|
|
2.39.0.windows.2
|
|
|