run-elementary-action icon indicating copy to clipboard operation
run-elementary-action copied to clipboard

Action fails during dependency installation due to outdated Python version

Open OgonnaO opened this issue 8 months ago • 0 comments

Hello,

The [email protected] is currently failing during the initial container build step when installing its Python dependencies.

The root cause appears to be that the action's base Docker image uses Python 3.9.17, but a dependency (dbt-bigquery pulls in numpy) now requires a newer version of Python to build.

Here is the key error from the build log: meson-python: error: The package requires Python version >=3.11, running on 3.9.17

This indicates that the action's environment is no longer compatible with the current Python package ecosystem.

Suggested Fix: The base image for the action needs to be updated to use a more recent version of Python, such as Python 3.11 or 3.12, to resolve this dependency conflict.

Thanks!

OgonnaO avatar Jun 13 '25 21:06 OgonnaO