We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zlib
Describe the bug
Recently, the conda feedstock for cmake updated its run exports to remove dependency on (amongst other things) the zlib conda package.
cmake
It seems like we were relying on this transitively being pulled in for our builds. See for example a recent failure: https://github.com/rapidsai/cudf/actions/runs/6033351272/job/16385609807#step:7:635
We should therefore probably make this dependency explicit in dependencies.yaml and the conda recipe meta.yaml for libcudf.
dependencies.yaml
meta.yaml
The text was updated successfully, but these errors were encountered:
This is where we actually use zlib in libcudf. This is the context I was missing:
cudf/cpp/CMakeLists.txt
Line 170 in c73ff70
cudf/cpp/src/io/text/bgzip_utils.cpp
Line 17 in c73ff70
Sorry, something went wrong.
Explicitly depend on zlib in conda recipes (#14018)
a2fd688
We were previously obtaining zlib transitively through our cmake dependency, but since the 3.27.4 conda package, this dependency no longer exists. Therefore we must depend on zlib ourselves. - Closes #14021 Authors: - Lawrence Mitchell (https://github.com/wence-) Approvers: - Bradley Dice (https://github.com/bdice) - AJ Schmidt (https://github.com/ajschmidt8) - Vyas Ramasubramani (https://github.com/vyasr) URL: #14018
Successfully merging a pull request may close this issue.
Describe the bug
Recently, the conda feedstock for
cmake
updated its run exports to remove dependency on (amongst other things) thezlib
conda package.It seems like we were relying on this transitively being pulled in for our builds. See for example a recent failure: https://github.com/rapidsai/cudf/actions/runs/6033351272/job/16385609807#step:7:635
We should therefore probably make this dependency explicit in
dependencies.yaml
and the conda recipemeta.yaml
for libcudf.The text was updated successfully, but these errors were encountered: