Skip to content

Commit 8821dc6

Browse files
authored
Remove xlrd as a dependency (#116)
Using xlrd as a dependency only for Python 3.6 Closes #115
1 parent dd4b035 commit 8821dc6

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,11 @@ def find_version(*file_paths):
8282
# your project is installed. For an analysis of "install_requires" vs pip's
8383
# requirements files see:
8484
# https://packaging.python.org/en/latest/requirements.html
85-
install_requires=['openpyxl>=2.5,<4', 'colour>=0.1.5,<0.2', 'jsonschema', 'xlrd>=1.0.0,<1.3.0', 'pandas<2']
85+
install_requires=[
86+
'openpyxl>=2.5,<4',
87+
'colour>=0.1.5,<0.2',
88+
'jsonschema',
89+
'pandas<2',
90+
"xlrd>=1.0.0,<1.3.0 ; python_version<='3.6'"
91+
]
8692
)

0 commit comments

Comments
 (0)