We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8048160 commit 0a082ffCopy full SHA for 0a082ff
setup.py
@@ -6,8 +6,8 @@
6
if sys.platform == 'darwin':
7
import platform
8
mac_ver = platform.mac_ver()[0]
9
- if mac_ver < '10.9':
10
- print "Using lxml<2.4"
+ if int(mac_ver.split('.')[1]) < 9:
+ print "Using lxml<2.4 for Mac OS X < 10.9"
11
lxml_requirement = "lxml<2.4"
12
13
setup(
0 commit comments