Skip to content
New issue

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

bump openvdb boost requirement #24711

Closed
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
2 changes: 1 addition & 1 deletion recipes/openvdb/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

def requirements(self):
# https://github.com/AcademySoftwareFoundation/openvdb/blob/v10.0.1/doc/dependencies.txt#L36-L84
self.requires("boost/1.84.0", transitive_headers=True)
self.requires("boost/1.85.0", transitive_headers=True)
self.requires("onetbb/2021.10.0", transitive_headers=True, transitive_libs=True)
if self.options.use_imath_half:
self.requires("imath/3.1.9", transitive_headers=True, transitive_libs=True)
Expand Down Expand Up @@ -233,7 +233,7 @@
# Relax version checks in find_package(),
# since the config/module files produced by CMakeDeps do not support gt major version checks
cmakelists = self.source_path.joinpath("openvdb", "openvdb", "CMakeLists.txt")
cmakelists.write_text(re.sub(r"\$\{MINIMUM_\S+_VERSION}", "", cmakelists.read_text()))

Check warning on line 236 in recipes/openvdb/all/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Using open without explicitly specifying an encoding

Check warning on line 236 in recipes/openvdb/all/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Using open without explicitly specifying an encoding
replace_in_file(self, os.path.join(self.source_folder, "openvdb", "openvdb", "CMakeLists.txt"),
"OPENVDB_FUTURE_DEPRECATION", "FALSE")

Expand Down
Loading