diff options
| author | J08nY | 2024-05-30 13:46:55 +0200 |
|---|---|---|
| committer | J08nY | 2024-05-30 13:46:55 +0200 |
| commit | 97fe36ca68a6d42967dd396aa721e5a42a2451df (patch) | |
| tree | 3ffb8c3ffb87318c2583494d6f8b5d958432a49c /.github | |
| parent | fac7017c7d072084d4546a03dd96ebb59ff3572e (diff) | |
| download | pyecsca-97fe36ca68a6d42967dd396aa721e5a42a2451df.tar.gz pyecsca-97fe36ca68a6d42967dd396aa721e5a42a2451df.tar.zst pyecsca-97fe36ca68a6d42967dd396aa721e5a42a2451df.zip | |
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/perf.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e6682ea..399752a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -35,8 +35,8 @@ jobs: sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES $GMP_PACKAGES - name: Install picoscope bindings run: | - git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. - git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && python setup.py install && cd .. + git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd .. + git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd .. - name: Install dependencies run: | python -m pip install -U pip setuptools wheel diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index e025879..78b529d 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -45,8 +45,8 @@ jobs: if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi - name: Install picoscope bindings run: | - git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. - git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && python setup.py install && cd .. + git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd .. + git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd .. - name: Install dependencies run: | python -m pip install -U pip setuptools wheel diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 84024d3..6e71bb9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,8 +45,8 @@ jobs: if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi - name: Install picoscope bindings run: | - git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. - git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && python setup.py install && cd .. + git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd .. + git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd .. - name: Install dependencies run: | python -m pip install -U pip setuptools wheel |
