From e8222d10cbb5473a5ef76269663ca685e569b07f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Baptiste=20B=C3=A9drune?= Date: Fri, 22 Jul 2022 11:32:31 +0200 Subject: [PATCH] Drop support for Python 3.6 Protobuf 3.20 does not support Python < 3.7, as described in https://github.com/protocolbuffers/protobuf/pull/9480 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c371ff0..1d6f5af 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_version(rel_path): name="ledgerwallet", version=get_version("ledgerwallet/__init__.py"), url="https://github.com/LedgerHQ/ledgerctl/", - python_requires=">=3.6", + python_requires=">=3.7", license="MIT", description="Python client and library to communicate with Ledger devices", long_description=long_description, @@ -49,7 +49,6 @@ def get_version(rel_path): py_modules=["ledgerctl"], classifiers=[ "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",