From e32fed3e5e8fd5a644bf7db11405b8b5dba78f6c Mon Sep 17 00:00:00 2001 From: J08nY Date: Mon, 24 Jul 2023 14:46:21 +0200 Subject: Make sure CI has numpy < 1.25.1 --- .github/workflows/lint.yml | 3 +++ .github/workflows/perf.yml | 3 +++ .github/workflows/test.yml | 3 +++ 3 files changed, 9 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0d02c48..d90a2a1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -33,6 +33,9 @@ jobs: - name: Install system dependencies run: | sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES $GMP_PACKAGES + - name: Install numpy + run: | + pip install numpy<1.25.1 - name: Install picoscope bindings run: | git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index 6534118..d08286f 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -43,6 +43,9 @@ jobs: run: | sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi + - name: Install numpy + run: | + pip install numpy<1.25.1 - name: Install picoscope bindings run: | git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 42eb8ba..03dc718 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,6 +43,9 @@ jobs: run: | sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi + - name: Install numpy + run: | + pip install numpy<1.25.1 - name: Install picoscope bindings run: | git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. -- cgit v1.2.3-70-g09d2