diff --git a/setup.py b/setup.py index 79207448..2d938ecc 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ elif (3, 0) < version < (3, 3): ' ({}.{} detected).'.format(*version)) sys.exit(-1) -VERSION = '3.10' +VERSION = '3.11' install_requires = ['psutil', 'colorama', 'six', 'decorator'] extras_require = {':python_version<"3.4"': ['pathlib2'], diff --git a/thefuck/rules/pip_unknown_command.py b/thefuck/rules/pip_unknown_command.py index af6a4dc6..a3c0dcac 100644 --- a/thefuck/rules/pip_unknown_command.py +++ b/thefuck/rules/pip_unknown_command.py @@ -4,7 +4,7 @@ from thefuck.specific.sudo import sudo_support @sudo_support -@for_app('pip') +@for_app('pip', 'pip2', 'pip3') def match(command): return ('pip' in command.script and 'unknown command' in command.stderr and