Open d3v-null opened 1 month ago
I've just remembered that I've solved a similar problem before. It may help to set the cmake defines like this
something like
# the ruby equivalent of ...
export PYTHON_EXECUTABLE=$(which python3)
export PYTHON_NUMPY_INCLUDE=$($PYTHON_EXECUTABLE -c "import numpy; print(numpy.get_include())")
cmake_args << "-DPython3_EXECUTABLE=#{PYTHON_EXECUTABLE}"
cmake_args << "-DPython3_NumPy_INCLUDE_DIR=${PYTHON_NUMPY_INCLUDE}"
Hi there, I have a pretty simple macos CI workflow, basically
it passes on macos-14 but it's currently failing on macos-13 with
I can see that your CI passes all the format checks, but perhaps you can add a test to install the formula.
While I'm here, I noticed that in a recent CI run, the "upload bottles as artifact" step is being skipped, and so there's no casacore-3.6.1 bottle available. Not sure if this is intentional.
Thanks!