Skip to content

Commit

Permalink
Align protobuf versions across operator and client (#163) (#3638)
Browse files Browse the repository at this point in the history
  • Loading branch information
masipauskas authored May 31, 2024
1 parent ea9d342 commit 3a49d8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions client/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "armada_client"
version = "0.3.1"
version = "0.3.2"
description = "Armada gRPC API python client"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["grpcio>=1.64.0", "grpcio-tools>=1.64.0", "mypy-protobuf>=3.2.0", "protobuf>=3.20.3"]
dependencies = ["grpcio==1.58.0", "grpcio-tools==1.58.0", "mypy-protobuf>=3.2.0", "protobuf>=3.20,<5.0" ]
license = { text = "Apache Software License" }
authors = [{ name = "G-Research Open Source Software", email = "armada@armadaproject.io" }]

Expand Down
7 changes: 4 additions & 3 deletions third_party/airflow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ requires-python = ">=3.7"
dependencies = [
"armada-client",
"apache-airflow>=2.6.3",
"grpcio==1.64.0",
"grpcio-tools==1.64.0",
"types-protobuf==4.24.0.1"
"grpcio==1.58.0",
"grpcio-tools==1.58.0",
"types-protobuf==4.24.0.1",
"protobuf>=3.20,<5.0"
]
authors = [{name = "Armada-GROSS", email = "armada@armadaproject.io"}]
license = { text = "Apache Software License" }
Expand Down

0 comments on commit 3a49d8d

Please sign in to comment.