-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpyproject.toml
More file actions
20 lines (18 loc) · 690 Bytes
/
pyproject.toml
File metadata and controls
20 lines (18 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[project]
name = "aspect_bazel_examples"
classifiers = ["Private :: Do Not Upload"]
version = "0"
# Note that pip-compile will ensure the resolved versions of
# direct and indirect dependencies are pinned.
# Therefore we only need to constrain versions when some ranges
# of dependency versions are not compatible.
# In fact, using an exact contraint like foo==1.2.3 is a bad idea:
# it provides a false guarantee of reproducibility, while making
# it impossible to constraint-solve if foo==1.2.4 is requested by
# another requirements file.
dependencies = [
# A minimum bound on the protobuf version
"protobuf>=5",
]
# See https://docs.astral.sh/ruff/configuration/
[tool.ruff]