refactor: use pickle instead of msgpack
This commit is contained in:
parent
7fa97704bd
commit
56e5709a35
@ -60,7 +60,6 @@ I'm working on it.
|
||||
| Dependencies | Version | Needed |
|
||||
| ------------ | :-----: | -----: |
|
||||
| ZeroMQ | latest | yes |
|
||||
| msgpack | latest | yes |
|
||||
| JsonDiff | latest | yes |
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
bl_info = {
|
||||
"name": "Multi-User",
|
||||
"author": "Swann Martinez",
|
||||
"version": (0, 0, 2),
|
||||
"version": (0, 0, 3),
|
||||
"description": "Enable real-time collaborative workflow inside blender",
|
||||
"blender": (2, 80, 0),
|
||||
"location": "3D View > Sidebar > Multi-User tab",
|
||||
@ -29,8 +29,6 @@ from .libs.replication.replication.constants import RP_COMMON
|
||||
# TODO: remove dependency as soon as replication will be installed as a module
|
||||
DEPENDENCIES = {
|
||||
("zmq","zmq"),
|
||||
("msgpack","msgpack"),
|
||||
("yaml","pyyaml"),
|
||||
("jsondiff","jsondiff")
|
||||
}
|
||||
|
||||
|
@ -166,7 +166,7 @@ class BlDatablock(ReplicatedDatablock):
|
||||
|
||||
if not self.is_library:
|
||||
dependencies.extend(self.resolve_deps_implementation())
|
||||
print(dependencies)
|
||||
|
||||
return dependencies
|
||||
|
||||
def resolve_deps_implementation(self):
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 99bf94874a07890dc747ec53519aa34443a95146
|
||||
Subproject commit 2e84bb65b8a430f6b98533bd9a95028fb243f535
|
Loading…
Reference in New Issue
Block a user