From 326bfdc29e8794ae340d7c35a7cac93e900e0f36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20K=C5=82oczko?= Date: Mon, 3 Jun 2024 13:54:47 +0000 Subject: [PATCH] manual updates to drop python<=3.7 support Add `python_requires='>=3.8',` and update `classifiers`. --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 51adeaf..7667a29 100644 --- a/setup.py +++ b/setup.py @@ -14,12 +14,11 @@ setup(name=name, "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "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", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords='noVNC websockify', license='LGPLv3', @@ -28,6 +27,7 @@ setup(name=name, author_email="github@martintribe.org", packages=['websockify'], + python_requires='>=3.8', include_package_data=True, install_requires=[ 'numpy', 'requests',