We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d4cfdb + c8c2f88 commit aeb4f4cCopy full SHA for aeb4f4c
1 file changed
setup.py
@@ -6,7 +6,8 @@
6
if sys.platform == 'darwin':
7
import platform
8
mac_ver = platform.mac_ver()[0]
9
- if mac_ver < '10.9':
+ mac_ver_no = int(mac_ver.split('.')[1])
10
+ if mac_ver_no < 9:
11
print "Using lxml<2.4"
12
lxml_requirement = "lxml<2.4"
13
0 commit comments