From c76804d4a3a123f156dc3e750ba5df7f5718ffcd Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Wed, 23 Apr 2025 16:10:48 +0200 Subject: [PATCH] added pybind11 depenency, as aoflagger seems to require it --- docker/pipeline/Dockerfile | 3 ++- requirements.txt | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/pipeline/Dockerfile b/docker/pipeline/Dockerfile index 7cadc5a..692edb4 100644 --- a/docker/pipeline/Dockerfile +++ b/docker/pipeline/Dockerfile @@ -51,7 +51,8 @@ RUN wget -q https://bootstrap.pypa.io/get-pip.py && \ # Install required python packages RUN python3 -m pip install \ - 'numpy<2' + 'numpy<2' \ + pybind11 # Install the casacore measures data. We purposely do not install these from # the Ubuntu repository, but download the latest version directly from the diff --git a/requirements.txt b/requirements.txt index de6af90..ad89d2f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,3 @@ toil[cwl] lsmtool pandas python-casacore -pybind11 \ No newline at end of file -- GitLab