-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow building on Mac OS X #139
base: master
Are you sure you want to change the base?
Conversation
Is this going to get merged? I'm running into same problem. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@seb-m Can you merge this? |
@@ -25,7 +25,7 @@ | |||
sys.exit(1) | |||
|
|||
# check linux platform | |||
if not platform.startswith('linux') and not platform.startswith('freebsd'): | |||
if not platform.startswith('linux') and not platform.startswith('freebsd') and not platform.startswith('macosx'): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this package can build on macos, is there any restriction ?
pyinotify successfully builds on OSX with this modification, but then gives a runtime error: |
Fixes #138.