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 26 27
|
Description: Soften upstream dependencies to match Debian availability
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: not-needed
Last-Update: 2002-06-13
---
--- a/setup.py
+++ b/setup.py
@@ -11,13 +11,13 @@
with open('CHANGES.rst') as f:
changes = f.read()
-install_requires = ['pycodestyle==2.4.0', 'pyflakes==2.0.0',
- 'pyserial==3.4', 'pyqt5==5.14.1', 'qscintilla==2.11.4',
- 'qtconsole==4.3.1', 'matplotlib==2.2.2',
- 'pgzero==1.2', 'PyQtChart==5.14.0', 'appdirs>=1.4.3',
- 'gpiozero>=1.4.1', 'guizero>=1.1.0',
+install_requires = ['pycodestyle>=2.4.0', 'pyflakes>=2.0.0',
+ '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',
- 'requests>=2.19.1', 'semver>=2.8.0', 'nudatus>=0.0.3', ]
+ 'requests>=2.19.1', 'semver>=2.0.1', 'nudatus>=0.0.3', ]
# Exclude packages not available for ARM in PyPI/piwheels (Raspberry Pi)
try:
|