Skip to content

Commit 6f19ef2

Browse files
committed
1.21.0 version bump & pyproject.toml dep fix
1 parent 1df843a commit 6f19ef2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

UnityPy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.20.26"
1+
__version__ = "1.21.0"
22

33
from .environment import Environment as Environment
44
from .helpers.ArchiveStorageManager import (

pyproject.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ dependencies = [
5555
dynamic = ["version"]
5656

5757
[project.optional-dependencies]
58-
typetree_api = ["TypeTreeAPI"]
59-
full = ["UnityPy[typetree_api]"]
60-
tests = ["pytest", "pillow", "psutil", "UnityPy[full]"]
58+
# optional dependencies must be lowercase/normalized
59+
ttgen = ["typetreegeneratorapi"]
60+
full = ["unitypy[ttgen]"]
61+
tests = ["pytest", "pillow", "psutil", "unitypy[full]"]
6162

6263
[project.urls]
6364
"Homepage" = "https://github.com/K0lb3/UnityPy"

0 commit comments

Comments
 (0)