From 7b73fffe530afe9a556039f58c0641ba404be781 Mon Sep 17 00:00:00 2001 From: vasiljevic Date: Tue, 27 Aug 2019 19:17:59 +0200 Subject: [PATCH] required python is >=3 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b04aef9..2cd8a63 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ version = m.group(1) setuptools.setup( - python_requires=">=3.6", + python_requires=">=3", name="PygameBg", version=version, author="Fondacija Petlja", @@ -30,7 +30,7 @@ zip_safe=True, py_modules = ["pygamebg"], classifiers=[ - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent" ]