-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Add recipe for bodo #28648
base: main
Are you sure you want to change the base?
Add recipe for bodo #28648
Conversation
Hi! This is the staged-recipes linter and your PR looks excellent! 🚀 |
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
Hi! This is the friendly automated conda-forge-linting service. I failed to even lint the recipe, probably because of a conda-smithy bug 😢. This likely indicates a problem in your This message was generated by GitHub Actions workflow run https://github.com/conda-forge/conda-forge-webservices/actions/runs/12417444786. Examine the logs at this URL for more detail. |
Hi! This is the staged-recipes linter and I found some lint. File-specific lints and/or hints:
|
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
I confirm that I am willing to be listed as a maintainer for this recipe. |
2 similar comments
I confirm that I am willing to be listed as a maintainer for this recipe. |
I confirm that I am willing to be listed as a maintainer for this recipe. |
Edit: I am no longer able to be a maintainer. I would like to be removed. |
I confirm that I am willing to be listed as a maintainer for this recipe. |
1 similar comment
I confirm that I am willing to be listed as a maintainer for this recipe. |
Hi! This is the staged-recipes linter and your PR looks excellent! 🚀 |
@conda-forge/help-python-c, ready for review! |
@conda-forge/help-python-c, bump |
recipes/bodo/meta.yaml
Outdated
- srilman | ||
- ehsantn | ||
- IsaacWarren | ||
- hadia206 | ||
- knassre-bodo | ||
- njriasan | ||
- scott-routledge2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see confirmation from srilman, ehsantn, issacwarren, hadia, knrasre, scot-rouledge
njriasan has revoked their consent.
recipes/bodo/meta.yaml
Outdated
- IsaacWarren | ||
- hadia206 | ||
- knassre-bodo | ||
- njriasan |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- njriasan |
recipes/bodo/conda_build_config.yaml
Outdated
CONDA_BUILD_SYSROOT: | ||
- /opt/MacOSX10.15.sdk # [osx and x86] | ||
- /opt/MacOSX11.0.sdk # [osx and arm64] | ||
|
||
MACOSX_SDK_VERSION: # [osx and x86] | ||
- "10.15" # [osx and x86] | ||
|
||
c_stdlib_version: # [osx] | ||
- 10.15 # [osx and x86] | ||
- 11.0 # [osx and arm64] | ||
|
||
target_platform: | ||
- osx-arm64 # [osx and arm64] | ||
|
||
SDKROOT: # [osx and arm64] | ||
- /opt # [osx and arm64] | ||
|
||
c_compiler_version: # [osx] | ||
- 19 # [osx] | ||
cxx_compiler_version: # [osx] | ||
- 19 # [osx] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose this is all to support cross-compilation from x86 to arm OSX. It shouldn't be necessary if you follow our documentation about cross-compilation.
https://conda-forge.org/docs/maintainer/knowledge_base/#cross-compilation
recipes/bodo/conda_build_config.yaml
Outdated
numpy: | ||
- 1.23 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have channel-wide pinnings for numpy that zip with the python version, but they won't be picked up if you override them here AND/OR add a contraint on numpy in the requirements sections.
recipes/bodo/meta.yaml
Outdated
- cmake | ||
- ninja |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't going to work when cross-compiling because your build tools will match the target-platform instead of the build-platform.
recipes/bodo/build.sh
Outdated
--no-deps --no-build-isolation -vv \ | ||
--config-settings=build.verbose=true \ | ||
--config-settings=logging.level="DEBUG" \ | ||
--config-settings=cmake.args="-DCMAKE_C_COMPILER=$CC;-DCMAKE_CXX_COMPILER=$CXX;-DCMAKE_INSTALL_PREFIX=$PREFIX;-DCMAKE_INSTALL_LIBDIR=lib;-DCMAKE_FIND_ROOT_PATH='$PREFIX;$CONDA_PREFIX_OLD/x86_64-conda-linux-gnu/sysroot';-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY" \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We automatically set at lot of useful/necessary CMAKE arguments in the CMAKE_ARGS environment variable.
https://conda-forge.org/docs/maintainer/knowledge_base/#using-cmake
- numpy >=1.24,<1.27 | ||
- pandas >=2.2,<2.3 | ||
- fsspec >=2021.09 | ||
- libboost-devel =1.85 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the libboost-headers package since it doesn't look like your are linking to libboost.
There are also overdepending warnings from conda-build about zstd and curl.
Hi! This is the friendly automated conda-forge-linting service. I wanted to let you know that I linted all conda-recipes in your PR ( Here's what I've got... For recipes/bodo/meta.yaml:
This message was generated by GitHub Actions workflow run https://github.com/conda-forge/conda-forge-webservices/actions/runs/13461195082. Examine the logs at this URL for more detail. |
Checklist
url
) rather than a repo (e.g.git_url
) is used in your recipe (see here for more details).Ref: #28626