diff options
| author | J08nY | 2023-07-24 14:49:54 +0200 |
|---|---|---|
| committer | J08nY | 2023-07-24 14:49:54 +0200 |
| commit | 10353aa91121ca26808072a2dfe928019b1e4961 (patch) | |
| tree | e0b569e9149e7715164664284ad7adc37d1d2732 | |
| parent | e32fed3e5e8fd5a644bf7db11405b8b5dba78f6c (diff) | |
| download | pyecsca-10353aa91121ca26808072a2dfe928019b1e4961.tar.gz pyecsca-10353aa91121ca26808072a2dfe928019b1e4961.tar.zst pyecsca-10353aa91121ca26808072a2dfe928019b1e4961.zip | |
| -rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/perf.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d90a2a1..a74b563 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -35,7 +35,7 @@ jobs: sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES $GMP_PACKAGES - name: Install numpy run: | - pip install numpy<1.25.1 + 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 d08286f..674ac5c 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -45,7 +45,7 @@ jobs: if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi - name: Install numpy run: | - pip install numpy<1.25.1 + 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 03dc718..515d9c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi - name: Install numpy run: | - pip install numpy<1.25.1 + 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 .. |
