Codebase list osrframework / debian/0.18.0-0kali1 debian / patches / drop-explicit-need-of-importlib.patch
debian/0.18.0-0kali1

Tree @debian/0.18.0-0kali1 (Download .tar.gz)

drop-explicit-need-of-importlib.patch @debian/0.18.0-0kali1raw · history · blame

Description: Drop depends on importlib
 We don't need to explicitly add importlib to Depends as it's a backport
 of python2.7 and we already have Python 2.7
Author: Sophie Brun <[email protected]>
Last-Update: 2017-08-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -189,7 +189,7 @@ setup(
         "tabulate",
         "oauthlib>=1.0.0",
         # Added to dinamically import wrappers:
-        "importlib",
+#        "importlib",
         #"inspect",
         #"pkgutil",
         # Adding dependencies to avoid the InsecurePlatformWarning when calling Twitter API dealing with SSL: <http://stackoverflow.com/a/29202163>. Other options would require the user to upgrade to Python 2.7.9.