Skip to content

Commit

Permalink
Drop support for Python 3.6
Browse files Browse the repository at this point in the history
Protobuf 3.20 does not support Python < 3.7, as described in protocolbuffers/protobuf#9480
  • Loading branch information
jibeee committed Jul 22, 2022
1 parent ca044a9 commit e8222d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -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,
Expand All @@ -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",
Expand Down

0 comments on commit e8222d1

Please sign in to comment.