The weekly CI testing the latest conda release (conda install -c conda-forge pyiron_workflow) failed. The error was consistently ModuleNotFoundError: No module named 'pyiron_snippets'.
This is actually no shocking and just a side effect of having made a release so close to the CI cron time; it successfully checked out the code for 0.9.0 (which uses pyiron_snippets, but this version isn't live on conda yet so the installed package was 0.8.0.
We could consider updating the script to more specifically try to conda-install the same version as the tag; the test still would have failed, it just would have been more obvious why. Given that this only took about two minutes to figure out, I am unmotivated to make such a change.
The weekly CI testing the latest conda release (
conda install -c conda-forge pyiron_workflow
) failed. The error was consistentlyModuleNotFoundError: No module named 'pyiron_snippets'
.This is actually no shocking and just a side effect of having made a release so close to the CI cron time; it successfully checked out the code for 0.9.0 (which uses
pyiron_snippets
, but this version isn't live on conda yet so the installed package was0.8.0
.We could consider updating the script to more specifically try to conda-install the same version as the tag; the test still would have failed, it just would have been more obvious why. Given that this only took about two minutes to figure out, I am unmotivated to make such a change.