Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,11 @@ updates:
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/tools/github"
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/tools/config_validation"
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/tools/docker"
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/tools/dependency"
schedule:
Expand All @@ -62,7 +52,7 @@ updates:
interval: "daily"

- package-ecosystem: "pip"
directory: "/tools/gpg"
directory: "/tools/distribution"
schedule:
interval: "daily"

Expand Down
18 changes: 4 additions & 14 deletions bazel/repositories_extra.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -44,29 +44,19 @@ def _python_deps():
requirements = "@envoy//tools/docs:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip_install(
name = "docker_pip3",
requirements = "@envoy//tools/docker:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip_install(
name = "deps_pip3",
requirements = "@envoy//tools/dependency:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip_install(
name = "git_pip3",
requirements = "@envoy//tools/git:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip_install(
name = "github_pip3",
requirements = "@envoy//tools/github:requirements.txt",
name = "distribution_pip3",
requirements = "@envoy//tools/distribution:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip_install(
name = "gpg_pip3",
requirements = "@envoy//tools/gpg:requirements.txt",
name = "git_pip3",
requirements = "@envoy//tools/git:requirements.txt",
extra_pip_args = ["--require-hashes"],
)
pip_install(
Expand Down
8 changes: 4 additions & 4 deletions tools/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ licenses(["notice"]) # Apache 2

envoy_package()

envoy_py_library("tools.base.abstract")
exports_files([
"base_command.py",
])

envoy_py_library(
"tools.base.aio",
deps = [
":functional",
requirement("aio.functional"),
],
)

Expand All @@ -22,8 +24,6 @@ envoy_py_library(
],
)

envoy_py_library("tools.base.functional")

envoy_py_library(
"tools.base.runner",
deps = [
Expand Down
165 changes: 0 additions & 165 deletions tools/base/abstract.py

This file was deleted.

2 changes: 1 addition & 1 deletion tools/base/aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Any, AsyncGenerator, AsyncIterable, AsyncIterator, Awaitable, Iterable, Iterator, List,
Optional, Union)

from tools.base.functional import async_property
from aio.functional import async_property


class ConcurrentError(Exception):
Expand Down
87 changes: 0 additions & 87 deletions tools/base/functional.py

This file was deleted.

10 changes: 8 additions & 2 deletions tools/base/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
#
# pip-compile --allow-unsafe --generate-hashes tools/base/requirements.txt
#
abstracts==0.0.12 \
--hash=sha256:acc01ff56c8a05fb88150dff62e295f9071fc33388c42f1dfc2787a8d1c755ff
# via aio.functional
aio.functional==0.0.9 \
--hash=sha256:824a997a394ad891bc9f403426babc13c9d0d1f4d1708c38e77d6aecae1cab1d
# via -r tools/base/requirements.txt
colorama==0.4.4 \
--hash=sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b \
--hash=sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2
Expand All @@ -13,8 +19,8 @@ coloredlogs==15.0.1 \
--hash=sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0
# via -r tools/base/requirements.txt
frozendict==2.0.6 \
--hash=sha256:5d3f75832c35d4df041f0e19c268964cbef29c1eb34cd3517cf883f1c2d089b9 \
--hash=sha256:3f00de72805cf4c9e81b334f3f04809278b967d2fed84552313a0fcce511beb1
--hash=sha256:3f00de72805cf4c9e81b334f3f04809278b967d2fed84552313a0fcce511beb1 \
--hash=sha256:5d3f75832c35d4df041f0e19c268964cbef29c1eb34cd3517cf883f1c2d089b9
# via -r tools/base/requirements.txt
humanfriendly==9.2 \
--hash=sha256:332da98c24cc150efcc91b5508b19115209272bfdf4b0764a56795932f854271 \
Expand Down
Loading