summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2016-08-31 06:38:19 -0700
committerGitHub <noreply@github.com>2016-08-31 06:38:19 -0700
commit58d03bf8225ad546aa7d12fe062bed136fd3f170 (patch)
tree9eac781ce62677f8703d8ca057b442d0d8d64d8c
parent6d15d46a310b29f9c0936347693dddc7001d2ebe (diff)
parente88317f98bb0acdaca15f60b6d6b33d7cae1388a (diff)
Merge pull request #573 from ysangkok/patch-1
do not install setproctitle on cygwin
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 48330223..94d51a8b 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ install_requirements = [
# But this is not necessary in Windows since the password is never shown in the
# task manager. Also setproctitle is a hard dependency to install in Windows,
# so we'll only install it if we're not in Windows.
-if platform.system() != 'Windows':
+if platform.system() != 'Windows' and not platform.system().startswith("CYGWIN"):
install_requirements.append('setproctitle >= 1.1.9')
setup(