Skip to content

Commit 152a002

Browse files
committed
Update openpyxl, get _get_column_letter from new location
OpenDataServices/cove#954
1 parent aba7ef8 commit 152a002

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

flattentool/input.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
import traceback
1616
import datetime
1717
import pytz
18-
from openpyxl.utils import _get_column_letter, column_index_from_string
18+
from openpyxl.utils import column_index_from_string
19+
from openpyxl.utils.cell import _get_column_letter
1920
from flattentool.exceptions import DataErrorWarning
2021
from flattentool.lib import isint, parse_sheet_configuration
2122

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import sys
33

4-
install_requires = ['jsonref', 'schema', 'openpyxl>=2,<2.4', 'six', 'pytz', 'xmltodict']
4+
install_requires = ['jsonref', 'schema', 'openpyxl>=2.5', 'six', 'pytz', 'xmltodict']
55

66
if sys.version < '3':
77
install_requires.append('unicodecsv')

0 commit comments

Comments
 (0)