From c63e0d1582dcc8eba392abd352d56a64a7d30287 Mon Sep 17 00:00:00 2001 From: Vladimir Iakovlev Date: Sun, 14 Aug 2016 13:18:43 +0300 Subject: [PATCH] Bump to 3.11 --- setup.py | 2 +- thefuck/rules/pip_unknown_command.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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