zou 0.20.13__py3-none-any.whl → 0.20.15__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/__init__.py +1 -1
- zou/app/blueprints/index/resources.py +1 -4
- {zou-0.20.13.dist-info → zou-0.20.15.dist-info}/METADATA +6 -6
- {zou-0.20.13.dist-info → zou-0.20.15.dist-info}/RECORD +9 -9
- {zou-0.20.13.dist-info → zou-0.20.15.dist-info}/LICENSE +0 -0
- {zou-0.20.13.dist-info → zou-0.20.15.dist-info}/WHEEL +0 -0
- {zou-0.20.13.dist-info → zou-0.20.15.dist-info}/entry_points.txt +0 -0
- {zou-0.20.13.dist-info → zou-0.20.15.dist-info}/top_level.txt +0 -0
zou/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.20.
|
|
1
|
+
__version__ = "0.20.15"
|
zou/app/__init__.py
CHANGED
|
@@ -288,10 +288,7 @@ class ConfigResource(Resource):
|
|
|
288
288
|
"is_self_hosted": config.IS_SELF_HOSTED,
|
|
289
289
|
"crisp_token": config.CRISP_TOKEN,
|
|
290
290
|
"dark_theme_by_default": organisation["dark_theme_by_default"],
|
|
291
|
-
"indexer_configured":
|
|
292
|
-
len(config.INDEXER["key"]) > 0
|
|
293
|
-
and config.INDEXER["key"] != "masterkey"
|
|
294
|
-
),
|
|
291
|
+
"indexer_configured": config.INDEXER["key"] is not None,
|
|
295
292
|
"saml_enabled": config.SAML_ENABLED,
|
|
296
293
|
"saml_idp_name": config.SAML_IDP_NAME,
|
|
297
294
|
"default_locale": config.DEFAULT_LOCALE,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: zou
|
|
3
|
-
Version: 0.20.
|
|
3
|
+
Version: 0.20.15
|
|
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
|
|
@@ -22,7 +22,7 @@ Classifier: Topic :: Multimedia :: Graphics
|
|
|
22
22
|
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
|
-
Requires-Dist: babel==2.
|
|
25
|
+
Requires-Dist: babel==2.17.0
|
|
26
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
|
|
@@ -41,7 +41,7 @@ Requires-Dist: flask-jwt-extended==4.7.1
|
|
|
41
41
|
Requires-Dist: flask-migrate==4.1.0
|
|
42
42
|
Requires-Dist: flask-socketio==5.5.1
|
|
43
43
|
Requires-Dist: flask==3.1.0
|
|
44
|
-
Requires-Dist: gazu==0.10.
|
|
44
|
+
Requires-Dist: gazu==0.10.26
|
|
45
45
|
Requires-Dist: gevent-websocket==0.10.1
|
|
46
46
|
Requires-Dist: gevent==24.11.1
|
|
47
47
|
Requires-Dist: gunicorn==23.0.0
|
|
@@ -65,14 +65,14 @@ 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
67
|
Requires-Dist: python-socketio==5.12.1
|
|
68
|
-
Requires-Dist: pytz==
|
|
68
|
+
Requires-Dist: pytz==2025.1
|
|
69
69
|
Requires-Dist: redis==5.2.1
|
|
70
70
|
Requires-Dist: requests==2.32.3
|
|
71
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.37
|
|
75
|
-
Requires-Dist: ua-parser==1.0.
|
|
75
|
+
Requires-Dist: ua-parser==1.0.1
|
|
76
76
|
Requires-Dist: werkzeug==3.1.3
|
|
77
77
|
Provides-Extra: prod
|
|
78
78
|
Requires-Dist: gunicorn; extra == "prod"
|
|
@@ -90,7 +90,7 @@ Requires-Dist: pygelf==0.4.2; extra == "monitoring"
|
|
|
90
90
|
Requires-Dist: sentry-sdk==2.20.0; extra == "monitoring"
|
|
91
91
|
Provides-Extra: lint
|
|
92
92
|
Requires-Dist: autoflake==2.3.1; extra == "lint"
|
|
93
|
-
Requires-Dist: black==
|
|
93
|
+
Requires-Dist: black==25.1.0; extra == "lint"
|
|
94
94
|
Requires-Dist: pre-commit==4.1.0; extra == "lint"
|
|
95
95
|
Dynamic: requires-python
|
|
96
96
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
zou/__init__.py,sha256=
|
|
1
|
+
zou/__init__.py,sha256=qx2qBaxijq_GGtI51BGXX5lmkBS7HlcGbPCmaum1Gf8,24
|
|
2
2
|
zou/cli.py,sha256=8JyGrWm7-Ykshv5IBjwlBMn8JkFpHPCADChA9n8loTI,18755
|
|
3
3
|
zou/debug.py,sha256=1fawPbkD4wn0Y9Gk0BiBFSa-CQe5agFi8R9uJYl2Uyk,520
|
|
4
4
|
zou/event_stream.py,sha256=EpohqFJwWL0zs-Ic_W5dX5_XSDeCrqHQPL5Re39OnQ0,6382
|
|
5
5
|
zou/job_settings.py,sha256=_aqBhujt2Q8sXRWIbgbDf-LUdXRdBimdtTc-fZbiXoY,202
|
|
6
|
-
zou/app/__init__.py,sha256=
|
|
6
|
+
zou/app/__init__.py,sha256=zGmaBGBHSS_Px34I3_WZmcse62G_AZJArjm4F6TwmRk,7100
|
|
7
7
|
zou/app/api.py,sha256=JTB_IMVO8EOoyqx9KdRkiIix0chOLi0yGDY-verUJXA,5127
|
|
8
8
|
zou/app/config.py,sha256=U3DuUOwZ66FZWVwwV-11SyhmpktGh7J7CgoE11jidSs,6687
|
|
9
9
|
zou/app/mixin.py,sha256=eYwfS_CUFvNmldaQXrjsN5mK_gX0wYrBFykfx60uUM8,4897
|
|
@@ -83,7 +83,7 @@ zou/app/blueprints/export/csv/time_spents.py,sha256=yYPtilOxfQD5mBwyh9h-PbTQBpab
|
|
|
83
83
|
zou/app/blueprints/files/__init__.py,sha256=7Wty30JW2OXIn-tBFXOWWmPuHnsnxPpH3jNtHvvr9tY,3987
|
|
84
84
|
zou/app/blueprints/files/resources.py,sha256=kWqhPfi1SmVXE05G3sfR2aF4r6J8O7Tr5c0oKO9MQN0,69175
|
|
85
85
|
zou/app/blueprints/index/__init__.py,sha256=Dh3oQiirpg8RCkfVOuk3irIjSvUvuRf0jPxE6oGubz0,828
|
|
86
|
-
zou/app/blueprints/index/resources.py,sha256=
|
|
86
|
+
zou/app/blueprints/index/resources.py,sha256=Z2N8fRffv4rkhazUe1_2x6I7-A01rCkCnByWCJ18Wbw,8558
|
|
87
87
|
zou/app/blueprints/news/__init__.py,sha256=HxBXjC15dVbotNAZ0CLf02iwUjxJr20kgf8_kT_9nwM,505
|
|
88
88
|
zou/app/blueprints/news/resources.py,sha256=HdLq2NgfKyN2d3hIATBhH3dlk4c50I4dhhvEhhB_NY4,7334
|
|
89
89
|
zou/app/blueprints/persons/__init__.py,sha256=0cnHHw3K_8OEMm0qOi3wKVomSAg9IJSnVjAXabMeHks,3893
|
|
@@ -416,9 +416,9 @@ zou/remote/normalize_movie.py,sha256=zNfEY3N1UbAHZfddGONTg2Sff3ieLVWd4dfZa1dpnes
|
|
|
416
416
|
zou/remote/playlist.py,sha256=AsDo0bgYhDcd6DfNRV6r6Jj3URWwavE2ZN3VkKRPbLU,3293
|
|
417
417
|
zou/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
418
|
zou/utils/movie.py,sha256=d67fIL9dVBKt-E_qCGXRbNNdbJaJR5sHvZeX3hf8ldE,16559
|
|
419
|
-
zou-0.20.
|
|
420
|
-
zou-0.20.
|
|
421
|
-
zou-0.20.
|
|
422
|
-
zou-0.20.
|
|
423
|
-
zou-0.20.
|
|
424
|
-
zou-0.20.
|
|
419
|
+
zou-0.20.15.dist-info/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
|
420
|
+
zou-0.20.15.dist-info/METADATA,sha256=o4r3Y9W25b_qntiXtCV0Eqr052SS0LXNSkzNw98Mge0,6733
|
|
421
|
+
zou-0.20.15.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
422
|
+
zou-0.20.15.dist-info/entry_points.txt,sha256=PelQoIx3qhQ_Tmne7wrLY-1m2izuzgpwokoURwSohy4,130
|
|
423
|
+
zou-0.20.15.dist-info/top_level.txt,sha256=4S7G_jk4MzpToeDItHGjPhHx_fRdX52zJZWTD4SL54g,4
|
|
424
|
+
zou-0.20.15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|