You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.