zou 0.19.73__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/tasks_service.py +2 -0
- {zou-0.19.73.dist-info → zou-0.20.0.dist-info}/METADATA +6 -6
- {zou-0.19.73.dist-info → zou-0.20.0.dist-info}/RECORD +8 -8
- {zou-0.19.73.dist-info → zou-0.20.0.dist-info}/LICENSE +0 -0
- {zou-0.19.73.dist-info → zou-0.20.0.dist-info}/WHEEL +0 -0
- {zou-0.19.73.dist-info → zou-0.20.0.dist-info}/entry_points.txt +0 -0
- {zou-0.19.73.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"
|
|
@@ -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
|
|
@@ -47,18 +47,18 @@ 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
|
|
@@ -68,7 +68,7 @@ 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
|
|
@@ -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
|
|
@@ -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
|