diff options
| author | J08nY | 2023-07-24 14:46:21 +0200 |
|---|---|---|
| committer | J08nY | 2023-07-24 14:46:21 +0200 |
| commit | e32fed3e5e8fd5a644bf7db11405b8b5dba78f6c (patch) | |
| tree | e787f009c147fe1030a708506d3f5f97f10c1a6b | |
| parent | b1f1c8a4c43ebacb7bf0aea92a6b280d57f37f55 (diff) | |
| download | pyecsca-e32fed3e5e8fd5a644bf7db11405b8b5dba78f6c.tar.gz pyecsca-e32fed3e5e8fd5a644bf7db11405b8b5dba78f6c.tar.zst pyecsca-e32fed3e5e8fd5a644bf7db11405b8b5dba78f6c.zip | |
| -rw-r--r-- | .github/workflows/lint.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/perf.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 3 |
3 files changed, 9 insertions, 0 deletions
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 .. |
