Skip to content

Commit 3c375e0

Browse files
committed
pythonPackages.protobuf: Use default version of protobuf
This has no current effect because pkgs.protobuf is pkgs.protobuf3_12, but since we always want this to upgrade consistently with the default version of protobuf, we might as well say so. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
1 parent 8e2b14a commit 3c375e0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pkgs/top-level/python-packages.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5370,7 +5370,9 @@ in {
53705370
protobuf = callPackage ../development/python-modules/protobuf {
53715371
disabled = isPyPy;
53725372
doCheck = !isPy3k;
5373-
protobuf = pkgs.protobuf3_12;
5373+
# If a protobuf upgrade causes many Python packages to fail, please pin it
5374+
# here to the previous version.
5375+
protobuf = pkgs.protobuf;
53745376
};
53755377

53765378
psd-tools = callPackage ../development/python-modules/psd-tools { };

0 commit comments

Comments
 (0)