refactor: use pickle instead of msgpack

This commit is contained in:
Swann 2020-03-19 17:26:30 +01:00
parent 7fa97704bd
commit 56e5709a35
No known key found for this signature in database
GPG Key ID: B880407E0F5F413E
4 changed files with 3 additions and 6 deletions

View File

@ -60,7 +60,6 @@ I'm working on it.
| Dependencies | Version | Needed |
| ------------ | :-----: | -----: |
| ZeroMQ | latest | yes |
| msgpack | latest | yes |
| JsonDiff | latest | yes |

View File

@ -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")
}

View File

@ -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