Skip to content

Commit

Permalink
Fix pico install in Python 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed May 30, 2024
1 parent fac7017 commit 97fe36c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 97fe36c

Please sign in to comment.