-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Auto-generate GRPC client bindings as part of pip install (#4041
)" This reverts commit bafbbda.
- Loading branch information
1 parent
19e3842
commit af7e1b7
Showing
12 changed files
with
69 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
[project] | ||
name = "armada_client" | ||
version = "0.4.5" | ||
version = "0.3.5" | ||
description = "Armada gRPC API python client" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
dependencies = ["grpcio-tools", "protobuf>3.20,<5.0"] | ||
requires-python = ">=3.7" | ||
dependencies = ["grpcio==1.66.1", "grpcio-tools==1.66.1", "mypy-protobuf>=3.2.0", "protobuf>=5.26.1,<6.0dev" ] | ||
license = { text = "Apache Software License" } | ||
authors = [{ name = "G-Research Open Source Software", email = "[email protected]" }] | ||
|
||
[project.optional-dependencies] | ||
format = ["black==23.7.0", "flake8==7.0.0", "pylint==2.17.5"] | ||
# note(JayF): sphinx-jekyll-builder was broken by sphinx-markdown-builder 0.6 -- so pin to 0.5.5 | ||
docs = ["sphinx==7.1.2", "sphinx-jekyll-builder==0.3.0", "sphinx-toolbox==3.2.0b1", "sphinx-markdown-builder==0.5.5"] | ||
test = ["pytest==7.3.1", "pytest-cov", "pytest-asyncio==0.21.1"] | ||
test = ["pytest==7.3.1", "coverage>=6.5.0", "pytest-asyncio==0.21.1"] | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel", "grpcio-tools", "mypy-protobuf", "protobuf>3.20,<5.0"] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.mypy] | ||
|
@@ -39,4 +39,4 @@ omit = [ | |
# py.typed is required for mypy to find type hints in the package | ||
# from: https://mypy.readthedocs.io/en/stable/installed_packages.html#making-pep-561-compatible-packages | ||
[tool.setuptools.package-data] | ||
"*" = ["*.pyi", "py.typed", "proto/**/*.proto"] | ||
"*" = ["*.pyi", "py.typed"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters