Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Remove dependency psutil for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Mar 31, 2020
1 parent 2583d1f commit bd39c99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ def gen_version():
v = "3.5.x.src.dev"


requirements = ['PyQt5==5.14.1', 'psutil', 'pynput', 'gitpython']
requirements = ['PyQt5==5.14.1', 'pynput', 'gitpython']
if platform.system() == 'Windows':
requirements.append('pywin32')
requirements.extend(['pywin32', 'psutil'])
elif platform.system() == 'Linux':
requirements.append('fonttools')
requirements.extend(['fonttools', 'psutil'])


setup(
Expand Down

0 comments on commit bd39c99

Please sign in to comment.