Skip to content

Commit

Permalink
Update to be LibBS 0.13.0 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaloz committed Jan 7, 2024
1 parent 69be3f6 commit 5d9b62f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ install_requires =
transformers
tqdm
dailalib
libbs>=0.9.0
libbs>=0.13.0

python_requires = >= 3.8
packages = find:
Expand Down
2 changes: 1 addition & 1 deletion varbert/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.5"
__version__ = "2.0.6"

import importlib.resources
import tarfile
Expand Down
2 changes: 1 addition & 1 deletion varbert/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from dailalib.api import AIAPI
from libbs.api import DecompilerInterface
from libbs.data import Function
from libbs.artifacts import Function
from tqdm import tqdm

from .text_processor import DecompilationTextProcessor
Expand Down
2 changes: 1 addition & 1 deletion varbert/text_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import Optional, Dict, Tuple

from libbs.api import DecompilerInterface
from libbs.data import Function
from libbs.artifacts import Function

_l = logging.getLogger(__name__)
BASEDIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "..")
Expand Down

0 comments on commit 5d9b62f

Please sign in to comment.