|
@@ -47,7 +47,8 @@ if sys.platform == 'darwin' and os.path.exists('/usr/bin/xcodebuild'):
|
|
|
for line in out.splitlines():
|
|
|
line = line.decode("utf8")
|
|
|
# Also parse only first digit, because 3.2.1 can't be parsed nicely
|
|
|
- if line.startswith('Xcode') and int(line.split()[1].split('.')[0]) >= 4:
|
|
|
+ if (line.startswith('Xcode') and
|
|
|
+ int(line.split()[1].split('.')[0]) >= 4):
|
|
|
os.environ['ARCHFLAGS'] = ''
|
|
|
|
|
|
tests_require = ['fastimport']
|