From 23b2df10012c84682cc671c0379cdbdbe58798a6 Mon Sep 17 00:00:00 2001 From: Kwpolska Date: Wed, 10 Oct 2012 20:37:40 +0200 Subject: [PATCH] certifi is no longer a dep of requests, and therefore ours Signed-off-by: Kwpolska --- INSTALL.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/INSTALL.py b/INSTALL.py index 981e6d7..9f7c66d 100755 --- a/INSTALL.py +++ b/INSTALL.py @@ -64,15 +64,6 @@ def depcheck(): deps['pyalpm'] = False print(_('not found')) - print("""certifi | AUR | """, end='') - try: - import certifi - deps['certifi'] = True - print(_('found')) - except ImportError: - deps['certifi'] = False - print(_('not found')) - print("""requests | AUR | """, end='') try: import requests @@ -140,10 +131,8 @@ def install(pkgname): deps = depcheck() - if deps['certifi'] is False or deps['requests'] is False: + if deps['requests'] is False: print(_("""Installing missing AUR dependencies...""")) - if deps['certifi'] is False: - install('python-certifi') if deps['requests'] is False: install('python-requests')