30 lines
961 B
Diff
30 lines
961 B
Diff
From fdc577c9471b801040ded53b379ae8e56c43699e Mon Sep 17 00:00:00 2001
|
|
From: Jiri Hnidek <jhnidek@redhat.com>
|
|
Date: Wed, 29 Jan 2020 15:34:46 +0100
|
|
Subject: [PATCH] Fix bug in classifiers.
|
|
|
|
---
|
|
setup.py | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 92a0761..ff567a2 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -28,8 +28,10 @@ use.''',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
- 'Programming Language :: Python :: 3.3',
|
|
- 'Programming Language :: Python :: 3.4',
|
|
+ 'Programming Language :: Python :: 3.5',
|
|
+ 'Programming Language :: Python :: 3.6',
|
|
+ 'Programming Language :: Python :: 3.7',
|
|
+ 'Programming Language :: Python :: 3.8',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
packages = ['iniparse'],
|
|
--
|
|
2.27.0
|
|
|