zou 0.19.72__py3-none-any.whl → 0.20.0__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/services/preview_files_service.py +1 -1
- zou/app/services/tasks_service.py +2 -0
- {zou-0.19.72.dist-info → zou-0.20.0.dist-info}/METADATA +9 -9
- {zou-0.19.72.dist-info → zou-0.20.0.dist-info}/RECORD +9 -9
- {zou-0.19.72.dist-info → zou-0.20.0.dist-info}/LICENSE +0 -0
- {zou-0.19.72.dist-info → zou-0.20.0.dist-info}/WHEEL +0 -0
- {zou-0.19.72.dist-info → zou-0.20.0.dist-info}/entry_points.txt +0 -0
- {zou-0.19.72.dist-info → zou-0.20.0.dist-info}/top_level.txt +0 -0
zou/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.20.0"
|
|
@@ -101,7 +101,7 @@ def get_preview_file_fps(project, entity=None):
|
|
|
101
101
|
if entity is not None:
|
|
102
102
|
entity_data = entity.get("data", {}) or {}
|
|
103
103
|
if entity_data.get("fps", None) is not None:
|
|
104
|
-
fps = entity_data["fps"].replace(",", ".")
|
|
104
|
+
fps = str(entity_data["fps"]).replace(",", ".")
|
|
105
105
|
|
|
106
106
|
return "%.3f" % float(fps)
|
|
107
107
|
|
|
@@ -1970,10 +1970,12 @@ def get_open_tasks(
|
|
|
1970
1970
|
query_stats = query_stats.filter(Task.assignees.any(id=person_id))
|
|
1971
1971
|
|
|
1972
1972
|
if start_date is not None:
|
|
1973
|
+
start_date = func.cast(start_date, Task.start_date.type)
|
|
1973
1974
|
query = query.filter(Task.start_date >= start_date)
|
|
1974
1975
|
query_stats = query_stats.filter(Task.start_date >= start_date)
|
|
1975
1976
|
|
|
1976
1977
|
if due_date is not None:
|
|
1978
|
+
due_date = func.cast(due_date, Task.due_date.type)
|
|
1977
1979
|
query = query.filter(Task.due_date <= due_date)
|
|
1978
1980
|
query_stats = query_stats.filter(Task.due_date <= due_date)
|
|
1979
1981
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: zou
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.0
|
|
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
|
|
@@ -23,7 +23,7 @@ Requires-Python: >=3.9, <3.14
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
Requires-Dist: audioop-lts==0.2.1; python_version >= "3.13"
|
|
25
25
|
Requires-Dist: babel==2.16.0
|
|
26
|
-
Requires-Dist: click==8.1.
|
|
26
|
+
Requires-Dist: click==8.1.8
|
|
27
27
|
Requires-Dist: discord.py==2.4.0
|
|
28
28
|
Requires-Dist: email-validator==2.2.0
|
|
29
29
|
Requires-Dist: ffmpeg-python==0.2.0
|
|
@@ -39,7 +39,7 @@ Requires-Dist: flask_sqlalchemy==3.1.1
|
|
|
39
39
|
Requires-Dist: flask-fs2[s3,swift]==0.7.27
|
|
40
40
|
Requires-Dist: flask-jwt-extended==4.7.1
|
|
41
41
|
Requires-Dist: flask-migrate==4.0.7
|
|
42
|
-
Requires-Dist: flask-socketio==5.
|
|
42
|
+
Requires-Dist: flask-socketio==5.5.0
|
|
43
43
|
Requires-Dist: flask==3.1.0
|
|
44
44
|
Requires-Dist: gazu==0.10.21
|
|
45
45
|
Requires-Dist: gevent-websocket==0.10.1
|
|
@@ -47,28 +47,28 @@ Requires-Dist: gevent==24.11.1
|
|
|
47
47
|
Requires-Dist: gunicorn==23.0.0
|
|
48
48
|
Requires-Dist: isoweek==1.3.3
|
|
49
49
|
Requires-Dist: itsdangerous==2.2.0
|
|
50
|
-
Requires-Dist: Jinja2==3.1.
|
|
50
|
+
Requires-Dist: Jinja2==3.1.5
|
|
51
51
|
Requires-Dist: ldap3==2.9.1
|
|
52
52
|
Requires-Dist: matterhook==0.2
|
|
53
53
|
Requires-Dist: meilisearch==0.33.0
|
|
54
54
|
Requires-Dist: numpy==2.0.1; python_version == "3.9"
|
|
55
|
-
Requires-Dist: numpy==2.2.
|
|
55
|
+
Requires-Dist: numpy==2.2.1; python_version >= "3.10"
|
|
56
56
|
Requires-Dist: opencv-python==4.10.0.84
|
|
57
57
|
Requires-Dist: OpenTimelineIO==0.17.0
|
|
58
58
|
Requires-Dist: OpenTimelineIO-Plugins==0.17.0
|
|
59
59
|
Requires-Dist: orjson==3.10.12
|
|
60
60
|
Requires-Dist: pillow==11.0.0
|
|
61
|
-
Requires-Dist: psutil==6.1.
|
|
61
|
+
Requires-Dist: psutil==6.1.1
|
|
62
62
|
Requires-Dist: psycopg[binary]==3.2.3
|
|
63
63
|
Requires-Dist: pyotp==2.9.0
|
|
64
64
|
Requires-Dist: pysaml2==7.5.0
|
|
65
65
|
Requires-Dist: python-nomad==2.0.1
|
|
66
66
|
Requires-Dist: python-slugify==8.0.4
|
|
67
|
-
Requires-Dist: python-socketio==5.
|
|
67
|
+
Requires-Dist: python-socketio==5.12.0
|
|
68
68
|
Requires-Dist: pytz==2024.2
|
|
69
69
|
Requires-Dist: redis==5.2.1
|
|
70
70
|
Requires-Dist: requests==2.32.3
|
|
71
|
-
Requires-Dist: rq==2.
|
|
71
|
+
Requires-Dist: rq==2.1.0
|
|
72
72
|
Requires-Dist: slackclient==2.9.4
|
|
73
73
|
Requires-Dist: sqlalchemy_utils==0.41.2
|
|
74
74
|
Requires-Dist: sqlalchemy==2.0.36
|
|
@@ -80,7 +80,7 @@ Requires-Dist: gevent; extra == "prod"
|
|
|
80
80
|
Provides-Extra: dev
|
|
81
81
|
Requires-Dist: wheel; extra == "dev"
|
|
82
82
|
Provides-Extra: test
|
|
83
|
-
Requires-Dist: fakeredis==2.26.
|
|
83
|
+
Requires-Dist: fakeredis==2.26.2; extra == "test"
|
|
84
84
|
Requires-Dist: mixer==7.2.2; extra == "test"
|
|
85
85
|
Requires-Dist: pytest-cov==6.0.0; extra == "test"
|
|
86
86
|
Requires-Dist: pytest==8.3.4; extra == "test"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
zou/__init__.py,sha256=
|
|
1
|
+
zou/__init__.py,sha256=NGIecTe1EEM7UeBjKSJ4vCWuGDWF1ZX4PckW2Eguxps,23
|
|
2
2
|
zou/cli.py,sha256=H18Wg-wqQOsv4F5_bZRDlxskjO-TRwaV1NmQMTH9mdg,18869
|
|
3
3
|
zou/debug.py,sha256=1fawPbkD4wn0Y9Gk0BiBFSa-CQe5agFi8R9uJYl2Uyk,520
|
|
4
4
|
zou/event_stream.py,sha256=_tue9Ry3aqCniZpKGhWJaY1Eo_fd6zOAfnzPvh_mJzU,8489
|
|
@@ -202,7 +202,7 @@ zou/app/services/news_service.py,sha256=eOXkvLhOcgncI2NrgiJEccV28oxZX5CsZVqaE-l4
|
|
|
202
202
|
zou/app/services/notifications_service.py,sha256=7GDRio_mGaRYV5BHOAdpxBZjA_LLYUfVpbwZqy1n9pI,15685
|
|
203
203
|
zou/app/services/persons_service.py,sha256=ccPP1_anu2J4zH54LKeP7dt1VyVpiYvzfgOS1xXhLrQ,16564
|
|
204
204
|
zou/app/services/playlists_service.py,sha256=pAlPHET4jNdST5jsmJrFUkf1SVhfSoML9zdNpZ_88l4,32439
|
|
205
|
-
zou/app/services/preview_files_service.py,sha256=
|
|
205
|
+
zou/app/services/preview_files_service.py,sha256=TKuUQ15kmf28ZcT2Ra08upGli-5flfLlvh-VTPV_rC0,35886
|
|
206
206
|
zou/app/services/projects_service.py,sha256=aIbYaFomy7OX2Pxvkf9w5qauDvkjuc9ummSGNYIpQMY,21249
|
|
207
207
|
zou/app/services/scenes_service.py,sha256=iXN19HU4njPF5VtZXuUrVJ-W23ZQuQNPC3ADXltbWtU,992
|
|
208
208
|
zou/app/services/schedule_service.py,sha256=E99HKYsXgnK2sw58fw-NNHXWBgVJiA60upztjkNSCaM,6989
|
|
@@ -210,7 +210,7 @@ zou/app/services/shots_service.py,sha256=4H81Tf6twY4s9Ac9_MCX_4bdW75m30TaKrR0tLi
|
|
|
210
210
|
zou/app/services/stats_service.py,sha256=cAlc92i9d6eYtsuwe3hYHYwdytg8KEMi1-TADfysJwM,11733
|
|
211
211
|
zou/app/services/status_automations_service.py,sha256=tVio7Sj7inhvKS4UOyRhcdpwr_KNP96hT1o0X7XcGF4,715
|
|
212
212
|
zou/app/services/sync_service.py,sha256=kJ1LGMNfPh9_BDwGTfoYWHrLZ8OlT0hWk-R8wNt0t3w,41562
|
|
213
|
-
zou/app/services/tasks_service.py,sha256=
|
|
213
|
+
zou/app/services/tasks_service.py,sha256=Cv1iEdXwZommRkKh8wv7_hf6yaEDIL9SYWRNuoAmdhg,68683
|
|
214
214
|
zou/app/services/telemetry_services.py,sha256=xQm1h1t_JxSFW59zQGf4NuNdUi1UfMa_6pQ-ytRbmGA,1029
|
|
215
215
|
zou/app/services/time_spents_service.py,sha256=H9X-60s6oqtY9rtU-K2jKwUSljfkdGlf_9wMr3iVfIA,15158
|
|
216
216
|
zou/app/services/user_service.py,sha256=csEwaX2VW-CTY4mexD0yTaNb2i0cN2LECeBnzjSyDUs,50036
|
|
@@ -413,9 +413,9 @@ zou/remote/normalize_movie.py,sha256=zNfEY3N1UbAHZfddGONTg2Sff3ieLVWd4dfZa1dpnes
|
|
|
413
413
|
zou/remote/playlist.py,sha256=AsDo0bgYhDcd6DfNRV6r6Jj3URWwavE2ZN3VkKRPbLU,3293
|
|
414
414
|
zou/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
415
|
zou/utils/movie.py,sha256=d67fIL9dVBKt-E_qCGXRbNNdbJaJR5sHvZeX3hf8ldE,16559
|
|
416
|
-
zou-0.
|
|
417
|
-
zou-0.
|
|
418
|
-
zou-0.
|
|
419
|
-
zou-0.
|
|
420
|
-
zou-0.
|
|
421
|
-
zou-0.
|
|
416
|
+
zou-0.20.0.dist-info/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
|
417
|
+
zou-0.20.0.dist-info/METADATA,sha256=0NMumLrVJLaAmxKYEm9MSIE7RD3ZzzuPM3NszQa8Q0U,6708
|
|
418
|
+
zou-0.20.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
419
|
+
zou-0.20.0.dist-info/entry_points.txt,sha256=PelQoIx3qhQ_Tmne7wrLY-1m2izuzgpwokoURwSohy4,130
|
|
420
|
+
zou-0.20.0.dist-info/top_level.txt,sha256=4S7G_jk4MzpToeDItHGjPhHx_fRdX52zJZWTD4SL54g,4
|
|
421
|
+
zou-0.20.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|