From 7ef61f8ce178fb96f8dc58a4dd241decba3ce775 Mon Sep 17 00:00:00 2001 From: lucasheld Date: Tue, 2 May 2023 17:57:32 +0200 Subject: [PATCH] feat: drop python 3.6 support BREAKING CHANGE: Python 3.7+ required --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c0347dc..5a0d95a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( author_email="lucasheld@hotmail.de", license=info["__license__"], packages=["uptime_kuma_api"], - python_requires=">=3.6, <4", + python_requires=">=3.7, <4", install_requires=[ "python-socketio[client]>=5.0.0", "packaging" @@ -43,7 +43,6 @@ setup( "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",