-
Notifications
You must be signed in to change notification settings - Fork 38
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
conda-forge-ci: Use tomlplusplus conda package #381
Conversation
@GiulioRomualdi I think there is little benefit to have a changelog entry for this, let me know if you think otherwise. |
Now the macos build fails with:
|
I don't think this is a regression due to conda, it just seems that before in the conda-ci the tomlplusplus package even if installed from source, it was ignored, as from the CMake log you can see that the |
Yes, indeed also in other CIs systems tomlplusplus seems to be ignored. |
c7ff5eb
to
04516b5
Compare
There is a bug in the TomlImplementation of the ParametersHandler when an std::vector<bool> boolVector(10);
for(const auto& element : boolVector)
m_container[parameterName].as_array()->push_back(element); notice that here The following modification should be enough to fix the problem: std::vector<bool> boolVector(10);
for(bool element : boolVector)
m_container[parameterName].as_array()->push_back(element); Interesting ridings:
Regarding this I don't know why |
This is the problem: marzer/tomlplusplus#110 |
04516b5
to
380f2bb
Compare
See conda-forge/staged-recipes#14921 for the PR that added the tomlplusplus package to conda-forge.