#298 Fix python 2 support

This commit is contained in:
nvbn
2015-07-29 15:22:24 +03:00
parent 7933e963d8
commit c8550a0ce5
4 changed files with 30 additions and 12 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ elif (3, 0) < version < (3, 3):
VERSION = '2.5.6'
install_requires = ['psutil', 'colorama', 'six', 'getch']
install_requires = ['psutil', 'colorama', 'six']
extras_require = {':python_version<"3.4"': ['pathlib']}
setup(name='thefuck',