Skip to content

Commit

Permalink
Merge pull request #8203 from jtratner/fix_openpyxl_compat_check
Browse files Browse the repository at this point in the history
BUG: Fix mismatched logic error in compatibility check
  • Loading branch information
jreback committed Sep 7, 2014
2 parents d48bb2c + 6e0e2a1 commit 12248ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/compat/openpyxl_compat.py
Expand Up @@ -21,4 +21,4 @@ def is_compat():
"""
import openpyxl
ver = LooseVersion(openpyxl.__version__)
return LooseVersion(start_ver) < ver <= LooseVersion(stop_ver)
return LooseVersion(start_ver) <= ver < LooseVersion(stop_ver)

0 comments on commit 12248ff

Please sign in to comment.