diff options
| author | Josh Ferrell <josh@vector35.com> | 2023-02-13 14:27:59 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2023-02-13 14:27:59 -0500 |
| commit | 155b63c35683ded76398d3c97bc9db57790f4bbb (patch) | |
| tree | f9d2e22ffc7d75982d25d9c1b51eb2f2d0053509 /python/__init__.py | |
| parent | 38fb1d656559cb4fb95201077d7aaf57d992a8c5 (diff) | |
Add __version__ attribute to python api, allow marking deprecation with future version marker
Diffstat (limited to 'python/__init__.py')
| -rw-r--r-- | python/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 * |
