Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapona committed Feb 14, 2024
1 parent 93676a9 commit 5daa16b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
18 changes: 9 additions & 9 deletions debian/pi-topd.lintian-overrides
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pi-topd: no-manual-page usr/bin/pi-topd
pi-topd: no-manual-page usr/bin/pt-poweroff
pi-topd: no-manual-page usr/bin/pt-reboot
pi-topd: systemd-service-file-refers-to-unusual-wantedby-target lib/systemd/system/pt-poweroff.service halt.target
pi-topd: systemd-service-file-refers-to-unusual-wantedby-target lib/systemd/system/pt-poweroff.service poweroff.target
pi-topd: systemd-service-file-refers-to-unusual-wantedby-target lib/systemd/system/pt-reboot.service reboot.target
pi-topd: package-supports-alternative-init-but-no-init.d-script lib/systemd/system/pi-topd.service
pi-topd: package-supports-alternative-init-but-no-init.d-script lib/systemd/system/pt-poweroff.service
pi-topd: package-supports-alternative-init-but-no-init.d-script lib/systemd/system/pt-reboot.service
pi-topd: no-manual-page [usr/bin/pi-topd]
pi-topd: no-manual-page [usr/bin/pt-poweroff]
pi-topd: no-manual-page [usr/bin/pt-reboot]
pi-topd: systemd-service-file-refers-to-unusual-wantedby-target halt.target [lib/systemd/system/pt-poweroff.service]
pi-topd: systemd-service-file-refers-to-unusual-wantedby-target poweroff.target [lib/systemd/system/pt-poweroff.service]
pi-topd: systemd-service-file-refers-to-unusual-wantedby-target reboot.target [lib/systemd/system/pt-reboot.service]
pi-topd: package-supports-alternative-init-but-no-init.d-script [lib/systemd/system/pi-topd.service]
pi-topd: package-supports-alternative-init-but-no-init.d-script [lib/systemd/system/pt-poweroff.service]
pi-topd: package-supports-alternative-init-but-no-init.d-script [lib/systemd/system/pt-reboot.service]
13 changes: 8 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,20 @@ install_requires =
# Package will always update in-step with SDK
# So avoid version-locking
pitop.common
click>=7.1.2,<7.2
click>=7.1.2,<7.2;python_version=='3.9'
click>=8.1.0,<9.0;python_version=='3.11'
click-logging>=1.0.1,<1.1
smbus2>=0.4.0,<0.5
spidev>=3.5,<3.6
# For journal logging
systemd-python>=234,<235
systemd-python>=235,<236;python_version=='3.11'
systemd-python>=234,<235;python_version=='3.9'
# Device Communication
pyzmq>=20.0.0,<21
pyzmq>=20.0.0,<21;python_version=='3.9'
pyzmq>=24.0.0,<25;python_version=='3.11'
# Event handling
pyee>=7.0.0,<8

pyee>=7.0.0,<8;python_version=='3.9'
pyee>=9.0.0,<10;python_version=='3.11'

[options.package_data]
* = *.mp3, *.restore
Expand Down

0 comments on commit 5daa16b

Please sign in to comment.