Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit 1947557

Browse files
committed
control: Simplify dependencies
1 parent 1d1af01 commit 1947557

File tree

5 files changed

+618
-295
lines changed

5 files changed

+618
-295
lines changed

.github/workflows/control-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install build dependencies
4444
run: |
4545
sudo apt-get install -y libcap-dev
46-
poetry -C ./control/ install --with dev,hw-dev --no-root
46+
poetry -C ./control/ install --with dev --no-root
4747
4848
- name: Run checks
4949
run: poetry -C ./control/ run poe --root ./control/ check

control/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Currently the hardware controller can only be deployed as part of the distro set
2323

2424
To install all dependencies including development tooling, run:
2525
```
26-
poetry install --with dev,hw-dev --no-root
26+
poetry install --with dev --no-root
2727
```
2828

2929
Then you can run the code auto-formatter on the project by running:

control/planktoscopehat/planktoscope/light.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Register(enum.IntEnum):
4141

4242
def __init__(self):
4343
# The led is controlled by LM36011
44-
# but on version < 2 of the PlanktoScope hat (for example PlanktoScope v2.6)
44+
# but on version 1.2 of the PlanktoScope HAT (PlanktoScope v2.6)
4545
# the circuit is connected to that pin so it needs to be high
4646
# pin is assigned to self to prevent gpiozero from immediately releasing it
4747
self.__pin = DigitalOutputDevice(pin=18, initial_value=True)

0 commit comments

Comments
 (0)