Skip to content

Commit 9450202

Browse files
authored
require configparser only in python < 3.6 (databricks#287)
configparser comes in default python >= 3.6
1 parent e15c5f6 commit 9450202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
'requests>=2.17.3',
3939
'tabulate>=0.7.7',
4040
'six>=1.10.0',
41-
'configparser >= 0.3.5',
41+
'configparser>=0.3.5;python_version < "3.6"',
4242
],
4343
entry_points='''
4444
[console_scripts]

0 commit comments

Comments
 (0)