Skip to content

Commit

Permalink
Update pyqt5 requirements
Browse files Browse the repository at this point in the history
oltodosel/interSubs#9

Specify pyqt versions as pyqt5.11 is incompatible with <python3.5
  • Loading branch information
swprojects committed Sep 14, 2018
1 parent b20a614 commit c0e6de7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ def run(self):
package_data={'': ["icons/*.png", "splash.png", "buildertron.png"]},
data_files=[('share/applications', ['data/Buildertron.desktop']),
('share/buildertron', ['buildertron/buildertron.png'])],
install_requires=["pyqt5"],
install_requires=[
'pyqt5==5.10.0;python_version=="3.4"',
'pyqt5==5.10.0;python_version=="3.5"',
'pyqt5;python_version>"3.6"'
],
classifiers=__classifiers__,
test_suite='tests',
tests_require=[],
Expand Down

0 comments on commit c0e6de7

Please sign in to comment.