From 155b63c35683ded76398d3c97bc9db57790f4bbb Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Mon, 13 Feb 2023 14:27:59 -0500 Subject: Add __version__ attribute to python api, allow marking deprecation with future version marker --- python/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python/__init__.py') diff --git a/python/__init__.py b/python/__init__.py index 913fde6a..697dfff8 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -27,6 +27,7 @@ from typing import Mapping, Optional # Binary Ninja components import binaryninja._binaryninjacore as core +__version__ = core.BNGetVersionString() import binaryninja from .enums import * from .databuffer import * -- cgit v1.3.1