We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e30f5 commit 6311120Copy full SHA for 6311120
3 files changed
pyproject.toml
@@ -3,8 +3,8 @@ name = "plugin-binary-ninja"
3
version = "0.0.1"
4
requires-python = ">=3.10"
5
dependencies = [
6
- "revengai>=2.12.0",
7
- "requests>=2.25.1",
+ "revengai>=2.51.0",
+ "urllib3>=2.0.0,<2.3.0",
8
"libbs==2.15.1",
9
"pydantic>=2.12.5",
10
]
reai_toolkit/__init__.py
@@ -59,15 +59,6 @@ def import_module(module_name):
59
60
os.environ["SSL_CERT_FILE"] = certifi.where()
61
os.environ["REQUESTS_CA_BUNDLE"] = certifi.where()
62
-
63
- modules.remove("revengai")
64
- sys.path.remove(vendor_path)
65
66
- for module in modules:
67
- delete_module(module)
68
- import_module(module)
69
70
- sys.path.insert(0, vendor_path)
71
72
except Exception as e:
73
log_error(f"RevEng.AI | Error listing vendor contents: {e}")
0 commit comments