Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Commit 5f80c88

Browse files
committed
Version 0.1.3
Fix Windows Build (...again.)
1 parent ca90701 commit 5f80c88

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

UnityPyLive2DExtractor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = (0, 1, 2)
1+
__version__ = (0, 1, 3)

UnityPyLive2DExtractor/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def read_from(reader: ObjectReader, **kwargs):
169169
if typetree:
170170
result = reader.read_typetree(typetree)
171171
nameSpace = importlib.import_module(
172-
f".generated.{nameSpace}", package=__package__
172+
f".generated.{nameSpace}", package="UnityPyLive2DExtractor"
173173
)
174174
clazz = getattr(nameSpace, className, None)
175175
instance = clazz(object_reader=reader, **result)

0 commit comments

Comments
 (0)