Browse Source

Relax dependency specification

Make it possible to install more current package versions for psutil, pillow and wxpython.
pull/241/merge
Christoph Buchner 7 years ago
committed by Chris
parent
commit
dfefe79eb6
1 changed files with 3 additions and 3 deletions
  1. 6
      setup.py

6
setup.py

@ -9,12 +9,12 @@ with open('README.md') as readme:
version = '1.0.0'
deps = [
'Pillow==4.3.0',
'psutil==5.4.2'
'Pillow>=4.3.0',
'psutil>=5.4.2'
]
if sys.version[0] == '3':
deps.append('wxpython==4.0.0b1')
deps.append('wxpython>=4.0.0b1')
setup(

Loading…
Cancel
Save