Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
migrated to openpyxl-2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Sep 23, 2016
1 parent e357324 commit aaa269a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*paths):
'xlrd>=1.0,<2.0a',
'ijson>=2.0,<3.0a',
'chardet>=2.0,<3.0a',
'openpyxl>=2.0,<3.0a',
'openpyxl>=2.4,<3.0a',
'requests>=2.8,<3.0a',
'beautifulsoup4>=4.4,<5.0a',
'linear-tsv>=0.99,<0.100a',
Expand Down
2 changes: 1 addition & 1 deletion tabulator/parsers/excelx.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ def extended_rows(self):
# Private

def __iter_extended_rows(self):
for number, row in enumerate(self.__sheet.rows, start=1):
for number, row in enumerate(self.__sheet.iter_rows(), start=1):
yield (number, None, list(cell.value for cell in row))

0 comments on commit aaa269a

Please sign in to comment.