Skip to content

Commit

Permalink
pin protobuf version (rapidsai#10996)
Browse files Browse the repository at this point in the history
Fixes: rapidsai#10990 

This PR pins the` protobuf` version to the latest and chooses narrower pinning because of the lower likelihood of breaking API changes between minor patch versions as opposed to major version changes.

Authors:
   - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
   - AJ Schmidt (https://github.com/ajschmidt8)
  • Loading branch information
galipremsagar authored May 31, 2022
1 parent dcb0470 commit d0b4e30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conda/environments/cudf_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dependencies:
- dask-cuda
- mimesis<4.1
- packaging
- protobuf
- protobuf>=3.20.1,<3.21.0a0
- nvtx>=0.2.1
- cachetools
- transformers<=4.10.3
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ requirements:
- {{ compiler('cxx') }}
- sysroot_{{ target_platform }} {{ sysroot_version }}
host:
- protobuf
- protobuf>=3.20.1,<3.21.0a0
- python
- cython >=0.29,<0.30
- setuptools
Expand All @@ -40,7 +40,7 @@ requirements:
- rmm {{ minor_version }}
- cudatoolkit {{ cuda_version }}
run:
- protobuf
- protobuf>=3.20.1,<3.21.0a0
- python
- typing_extensions
- pandas >=1.0,<1.5.0dev0
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"nvtx>=0.2.1",
"packaging",
"pandas>=1.0,<1.5.0dev0",
"protobuf",
"protobuf>=3.20.1,<3.21.0a0",
"typing_extensions",
]

Expand Down

0 comments on commit d0b4e30

Please sign in to comment.