From 621cbdbd496f06be05c6e598e9ce80fd3cc06978 Mon Sep 17 00:00:00 2001 From: Tammo Jan Dijkema Date: Wed, 28 Aug 2024 10:42:44 +0200 Subject: [PATCH] Install numpy <2 --- .github/workflows/py3_casacore_master.docker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/py3_casacore_master.docker b/.github/workflows/py3_casacore_master.docker index 236523b..5e3b5a8 100644 --- a/.github/workflows/py3_casacore_master.docker +++ b/.github/workflows/py3_casacore_master.docker @@ -14,7 +14,7 @@ ADD . /src WORKDIR /src RUN python3 -m venv venv && \ . venv/bin/activate && \ - pip install numpy==1.26.4 && \ + pip install 'numpy<2' && \ pip install . && \ cd tests && \ pip install -r requirements.txt && \