zou 0.20.52__py3-none-any.whl → 0.20.53__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- zou/__init__.py +1 -1
- zou/app/utils/events.py +4 -1
- {zou-0.20.52.dist-info → zou-0.20.53.dist-info}/METADATA +9 -8
- {zou-0.20.52.dist-info → zou-0.20.53.dist-info}/RECORD +8 -8
- {zou-0.20.52.dist-info → zou-0.20.53.dist-info}/WHEEL +0 -0
- {zou-0.20.52.dist-info → zou-0.20.53.dist-info}/entry_points.txt +0 -0
- {zou-0.20.52.dist-info → zou-0.20.53.dist-info}/licenses/LICENSE +0 -0
- {zou-0.20.52.dist-info → zou-0.20.53.dist-info}/top_level.txt +0 -0
zou/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.20.
|
|
1
|
+
__version__ = "0.20.53"
|
zou/app/utils/events.py
CHANGED
|
@@ -70,7 +70,10 @@ def emit(event, data={}, persist=True, project_id=None):
|
|
|
70
70
|
data = fields.serialize_dict(data)
|
|
71
71
|
publisher_store.publish(event, data)
|
|
72
72
|
if persist:
|
|
73
|
-
|
|
73
|
+
# Create DB entry saving the data for the event, and include the ID in
|
|
74
|
+
# the data so that it can be read by the handlers.
|
|
75
|
+
api_event = save_event(event, data, project_id=project_id)
|
|
76
|
+
data["id"] = str(api_event.id)
|
|
74
77
|
|
|
75
78
|
from zou.app.config import ENABLE_JOB_QUEUE
|
|
76
79
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zou
|
|
3
|
-
Version: 0.20.
|
|
3
|
+
Version: 0.20.53
|
|
4
4
|
Summary: API to store and manage the data of your animation production
|
|
5
5
|
Home-page: https://zou.cg-wire.com
|
|
6
6
|
Author: CG Wire
|
|
@@ -49,7 +49,8 @@ Requires-Dist: Jinja2==3.1.6
|
|
|
49
49
|
Requires-Dist: ldap3==2.9.1
|
|
50
50
|
Requires-Dist: matterhook==0.2
|
|
51
51
|
Requires-Dist: meilisearch==0.34.1
|
|
52
|
-
Requires-Dist: numpy==2.2.6
|
|
52
|
+
Requires-Dist: numpy==2.2.6; python_version == "3.10"
|
|
53
|
+
Requires-Dist: numpy==2.3.0; python_version >= "3.11"
|
|
53
54
|
Requires-Dist: opencv-python==4.11.0.86
|
|
54
55
|
Requires-Dist: OpenTimelineIO==0.17.0
|
|
55
56
|
Requires-Dist: OpenTimelineIO-Plugins==0.17.0
|
|
@@ -64,15 +65,15 @@ Requires-Dist: python-slugify==8.0.4
|
|
|
64
65
|
Requires-Dist: python-socketio==5.13.0
|
|
65
66
|
Requires-Dist: pytz==2025.2
|
|
66
67
|
Requires-Dist: redis==5.2.1
|
|
67
|
-
Requires-Dist: requests==2.32.
|
|
68
|
-
Requires-Dist: rq==2.
|
|
68
|
+
Requires-Dist: requests==2.32.4
|
|
69
|
+
Requires-Dist: rq==2.4.0
|
|
69
70
|
Requires-Dist: semver==3.0.4
|
|
70
71
|
Requires-Dist: slackclient==2.9.4
|
|
71
72
|
Requires-Dist: spdx-license-list==3.26.0
|
|
72
73
|
Requires-Dist: sqlalchemy_utils==0.41.2
|
|
73
74
|
Requires-Dist: sqlalchemy==2.0.41
|
|
74
75
|
Requires-Dist: tabulate==0.9.0
|
|
75
|
-
Requires-Dist: tomlkit==0.13.
|
|
76
|
+
Requires-Dist: tomlkit==0.13.3
|
|
76
77
|
Requires-Dist: ua-parser==1.0.1
|
|
77
78
|
Requires-Dist: werkzeug==3.1.3
|
|
78
79
|
Provides-Extra: prod
|
|
@@ -83,12 +84,12 @@ Requires-Dist: wheel; extra == "dev"
|
|
|
83
84
|
Provides-Extra: test
|
|
84
85
|
Requires-Dist: fakeredis==2.29.0; extra == "test"
|
|
85
86
|
Requires-Dist: mixer==7.2.2; extra == "test"
|
|
86
|
-
Requires-Dist: pytest-cov==6.
|
|
87
|
+
Requires-Dist: pytest-cov==6.2.1; extra == "test"
|
|
87
88
|
Requires-Dist: pytest==8.4.0; extra == "test"
|
|
88
89
|
Provides-Extra: monitoring
|
|
89
90
|
Requires-Dist: prometheus-flask-exporter==0.23.2; extra == "monitoring"
|
|
90
|
-
Requires-Dist: pygelf==0.4.
|
|
91
|
-
Requires-Dist: sentry-sdk==2.
|
|
91
|
+
Requires-Dist: pygelf==0.4.3; extra == "monitoring"
|
|
92
|
+
Requires-Dist: sentry-sdk==2.30.0; extra == "monitoring"
|
|
92
93
|
Provides-Extra: lint
|
|
93
94
|
Requires-Dist: autoflake==2.3.1; extra == "lint"
|
|
94
95
|
Requires-Dist: black==25.1.0; extra == "lint"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
zou/__init__.py,sha256=
|
|
1
|
+
zou/__init__.py,sha256=hWyDjqps2Up9jtLTdCDujU-UnJ-Q6s3jA-17j6CV-2A,24
|
|
2
2
|
zou/cli.py,sha256=W7nhMII-gyl8AlL6zgDmverSdFphDV_WnuN3BHrHc8w,22448
|
|
3
3
|
zou/debug.py,sha256=1fawPbkD4wn0Y9Gk0BiBFSa-CQe5agFi8R9uJYl2Uyk,520
|
|
4
4
|
zou/event_stream.py,sha256=yTU1Z3r55SiYm8Y5twtJIo5kTnhbBK-XKc8apdgvzNw,8291
|
|
@@ -241,7 +241,7 @@ zou/app/utils/date_helpers.py,sha256=jFxDPCbAasg0I1gsC72AKEbGcx5c4pLqXZkSfZ4wLdQ
|
|
|
241
241
|
zou/app/utils/dbhelpers.py,sha256=RSJuoxLexGJyME16GQCs-euFLBR0u-XAFdJ1KMSv5M8,1143
|
|
242
242
|
zou/app/utils/emails.py,sha256=hc4HWvVYsG1xoP3sR0Zig0sB0k0y7bNxuNxxBreN5Yg,1436
|
|
243
243
|
zou/app/utils/env.py,sha256=haveriMt1rDeLOosAPMm0IblF_QpMViEsjg7BJqD-rw,711
|
|
244
|
-
zou/app/utils/events.py,sha256=
|
|
244
|
+
zou/app/utils/events.py,sha256=czvaA4QeWIgroshpmonQCMmuq5O1XzIz08HfyLUq5T8,3213
|
|
245
245
|
zou/app/utils/fido.py,sha256=Tlv5V4mDIbWiz93-gLh6i5p4PXBJWTLR3djR4ysT-PA,460
|
|
246
246
|
zou/app/utils/fields.py,sha256=GTG6249Dz5pJUI1pcDPilzZqGkyPkAEyLpT3Gu2CfB0,3707
|
|
247
247
|
zou/app/utils/flask.py,sha256=t0sC6yEDyzn-vCsijWzI9lpNWoxAYWfui25QtjQi_64,1822
|
|
@@ -446,9 +446,9 @@ zou/remote/normalize_movie.py,sha256=zNfEY3N1UbAHZfddGONTg2Sff3ieLVWd4dfZa1dpnes
|
|
|
446
446
|
zou/remote/playlist.py,sha256=AsDo0bgYhDcd6DfNRV6r6Jj3URWwavE2ZN3VkKRPbLU,3293
|
|
447
447
|
zou/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
448
|
zou/utils/movie.py,sha256=d67fIL9dVBKt-E_qCGXRbNNdbJaJR5sHvZeX3hf8ldE,16559
|
|
449
|
-
zou-0.20.
|
|
450
|
-
zou-0.20.
|
|
451
|
-
zou-0.20.
|
|
452
|
-
zou-0.20.
|
|
453
|
-
zou-0.20.
|
|
454
|
-
zou-0.20.
|
|
449
|
+
zou-0.20.53.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
|
450
|
+
zou-0.20.53.dist-info/METADATA,sha256=JWOAEVzwudNDAtZ9YoAmmr6hJd3VqzwcJ1IPBns5msg,6778
|
|
451
|
+
zou-0.20.53.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
452
|
+
zou-0.20.53.dist-info/entry_points.txt,sha256=PelQoIx3qhQ_Tmne7wrLY-1m2izuzgpwokoURwSohy4,130
|
|
453
|
+
zou-0.20.53.dist-info/top_level.txt,sha256=4S7G_jk4MzpToeDItHGjPhHx_fRdX52zJZWTD4SL54g,4
|
|
454
|
+
zou-0.20.53.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|