Skip to content

Commit

Permalink
chore: drop support for python 3.8, allow protobuf 5.x
Browse files Browse the repository at this point in the history
(trying to use `ledgerwallet` (via `ragger`) in a project that depends on protobuf 5.x)
  • Loading branch information
jnicoulaud-ledger committed Aug 29, 2024
1 parent 6bd85b6 commit c6ebbda
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ readme = {file = "README.md", content-type = "text/markdown"}
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -25,7 +24,7 @@ classifiers = [
"Operating System :: MacOS :: MacOS X",
]
dynamic = ["version"]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"click >=8.0",
"construct >=2.10",
Expand All @@ -34,7 +33,7 @@ dependencies = [
"hidapi",
"intelhex",
"Pillow",
"protobuf >=3.20,<4",
"protobuf >=3.20,<6",
"requests",
"tabulate",
"toml",
Expand Down

0 comments on commit c6ebbda

Please sign in to comment.