Skip to content

Commit

Permalink
glcli: Update protobuf dependency and mypy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Nov 16, 2023
1 parent eba24c4 commit 021fec4
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions tools/glcli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,26 @@ authors = ["Christian Decker <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
click = "^8"
grpcio = "^1.46.1"
protobuf = "^3.20.1"
grpcio = "^1"
protobuf = "^4"
gl-client = "^0.1"

[tool.poetry.group.dev.dependencies]
mypy-protobuf = "^3.5.0"
mypy = "^1.7.0"
typed-ast = "^1.5.5"
types-protobuf = "^4.24.0.4"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
glcli = 'glcli.cli:cli'

[tool.mypy]

[[tool.mypy.overrides]]
module = 'glcli'

0 comments on commit 021fec4

Please sign in to comment.