Skip to content

Commit

Permalink
require configparser only in python < 3.6 (databricks#287)
Browse files Browse the repository at this point in the history
configparser comes in default python >= 3.6
  • Loading branch information
acxz authored Apr 21, 2020
1 parent e15c5f6 commit 9450202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'requests>=2.17.3',
'tabulate>=0.7.7',
'six>=1.10.0',
'configparser >= 0.3.5',
'configparser>=0.3.5;python_version < "3.6"',
],
entry_points='''
[console_scripts]
Expand Down

0 comments on commit 9450202

Please sign in to comment.