8000 compare python versions correctly · matplotlib/matplotlib@c9721fe · GitHub
[go: up one dir, main page]

Skip to content

Commit c9721fe

Browse files
committed
compare python versions correctly
1 parent 32ddf1e commit c9721fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ def get_package_data(self):
632632

633633
def get_install_requires(self):
634634
requires = ['nose>=0.11.1']
635-
if not is_min_version(sys.version_info, '3.3'):
635+
if not sys.version_info > (3, 3):
636636
requires += ['mock']
637637
return requires
638638

0 commit comments

Comments
 (0)
0