diff --git a/AUTHORS.txt b/AUTHORS.txt index c1599265..a446ebb4 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -1,3 +1 @@ -# This list was out of date, I've put "see contributors" for the moment. Not sure how to fix long term but don't want to be -# embarrassed by some off the great contributors of late being omitted from a list. See contributors. diff --git a/setup.py b/setup.py index 58267ab8..9a1e1f5f 100644 --- a/setup.py +++ b/setup.py @@ -26,11 +26,7 @@ del version_dummy #Mac OS X Clang doesn't support OpenMP at the current time. #This detects if we are building on a Mac def ismac(): - platform = sys.platform - ismac = False - if platform[:6] == 'darwin': - ismac = True - return ismac + return sys.platform[:6] == 'darwin' if ismac(): compile_flags = [ '-O3', ]