1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: Remove references to unpackaged Raspberry Pi control libraries
Mu supports the Raspberry Pi (both natively via gpiozero, and remotely via
pigpio), but some dependencies are not yet packaged for Debian (or for
all architectures):
.
- gpiozero (only packaged for arm64,armel,armhf)
see RFP: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=856413
- pigpio (currently only the client packaged)
see RFP: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=908787
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: not-needed
Last-Update: 2019-01-16
---
--- a/setup.py
+++ b/setup.py
@@ -15,8 +15,7 @@
'pyserial>=3.4', 'pyqt5>=5.11.3', 'qscintilla>=2.10.4',
'qtconsole>=4.3.1', 'matplotlib>=2.2.2',
'pgzero>=1.2', 'PyQtChart>=5.11.3', 'appdirs>=1.4.3',
- 'gpiozero>=1.4.1', 'guizero>=0.5.2',
- 'pigpio>=1.40.post1', 'Pillow>=5.2.0',
+ 'guizero>=0.5.2', 'Pillow>=5.2.0',
'requests>=2.19.1', 'semver>=2.0.1', 'nudatus>=0.0.3', ]
# Exclude packages not available for ARM in PyPI/piwheels (Raspberry Pi)
|