From 8c726e03bd804929dc1ab8d440f70f3a72f0408b Mon Sep 17 00:00:00 2001 From: relikd Date: Sat, 30 Oct 2021 18:39:52 +0200 Subject: [PATCH] fix pypi-classifiers. Min python version is 3.5 --- icnsutil/__init__.py | 2 +- setup.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/icnsutil/__init__.py b/icnsutil/__init__.py index 10dff06..119c76f 100644 --- a/icnsutil/__init__.py +++ b/icnsutil/__init__.py @@ -2,7 +2,7 @@ ''' A fully-featured python library to handle reading and writing icns files. ''' -__version__ = '1.0' +__version__ = '1.0.1' from .IcnsFile import IcnsFile from .ArgbImage import ArgbImage, PIL_ENABLED diff --git a/setup.py b/setup.py index a83f815..a6e913b 100644 --- a/setup.py +++ b/setup.py @@ -40,9 +40,6 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - '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.7',