Skip to content

Commit

Permalink
glcli: Add gl-client as a dependency
Browse files Browse the repository at this point in the history
Fixed the dependency from `glcli` to `gl-client`.
I've used a fixed version number.

This is often recommended for packages that are released on lock-step.
This ensures we never have any version conflict between `glcli` and
`gl-client`.
  • Loading branch information
ErikDeSmedt committed May 3, 2024
1 parent 18a8414 commit 9a64a47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/glcli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ python = "^3.8"
click = "^8"
grpcio = "^1"
protobuf = "^5"
gl-client = { path = "../../libs/gl-client-py", develop = false}
gl-client = "0.2.0"

[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"
gl-client = { path = "../../libs/gl-client-py", develop = false}

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 9a64a47

Please sign in to comment.