aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml2
-rw-r--r--.github/workflows/perf.yml2
-rw-r--r--.github/workflows/test.yml2
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 ..