educommon 3.11.0__py3-none-any.whl → 3.11.1__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.
- educommon/async_task/migrations/0003_alter_runningtask_options.py +18 -0
- educommon/async_task/models.py +1 -3
- educommon/version.conf +5 -5
- {educommon-3.11.0.dist-info → educommon-3.11.1.dist-info}/METADATA +21 -16
- {educommon-3.11.0.dist-info → educommon-3.11.1.dist-info}/RECORD +8 -7
- {educommon-3.11.0.dist-info → educommon-3.11.1.dist-info}/WHEEL +1 -1
- {educommon-3.11.0.dist-info → educommon-3.11.1.dist-info}/dependency_links.txt +0 -0
- {educommon-3.11.0.dist-info → educommon-3.11.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
# Generated by Django 3.2.23 on 2025-02-04 13:16
|
2
|
+
|
3
|
+
from django.db import migrations, models
|
4
|
+
|
5
|
+
|
6
|
+
class Migration(migrations.Migration):
|
7
|
+
|
8
|
+
dependencies = [
|
9
|
+
('async_task', '0002_task_type_and_status_data'),
|
10
|
+
]
|
11
|
+
|
12
|
+
operations = [
|
13
|
+
migrations.AlterField(
|
14
|
+
model_name='runningtask',
|
15
|
+
name='options',
|
16
|
+
field=models.JSONField(blank=True, null=True, verbose_name='Дополнительные опции задачи'),
|
17
|
+
),
|
18
|
+
]
|
educommon/async_task/models.py
CHANGED
@@ -9,9 +9,6 @@ from celery import (
|
|
9
9
|
from django.contrib.contenttypes.models import (
|
10
10
|
ContentType,
|
11
11
|
)
|
12
|
-
from django.contrib.postgres.fields import (
|
13
|
-
JSONField,
|
14
|
-
)
|
15
12
|
from django.db.models import (
|
16
13
|
PROTECT,
|
17
14
|
SET_NULL,
|
@@ -22,6 +19,7 @@ from django.db.models import (
|
|
22
19
|
Index,
|
23
20
|
PositiveIntegerField,
|
24
21
|
UUIDField,
|
22
|
+
JSONField,
|
25
23
|
)
|
26
24
|
from m3.db import (
|
27
25
|
BaseObjectModel,
|
educommon/version.conf
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
# нормальной установки обновлений.
|
5
5
|
|
6
6
|
[version]
|
7
|
-
BRANCH = tags/3.11.
|
8
|
-
VERSION = 3.11.
|
9
|
-
REVISION =
|
10
|
-
VERSION_DATE =
|
11
|
-
REVISION_DATE =
|
7
|
+
BRANCH = tags/3.11.1
|
8
|
+
VERSION = 3.11.1
|
9
|
+
REVISION = e5d97ae13ca313d7f2354fff33f7c666c9ed1bad
|
10
|
+
VERSION_DATE = 04.02.2025
|
11
|
+
REVISION_DATE = 04.02.2025
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: educommon
|
3
|
-
Version: 3.11.
|
3
|
+
Version: 3.11.1
|
4
4
|
Summary: Общая кодовая база для проектов БЦ Образование
|
5
5
|
Home-page: https://stash.bars-open.ru/projects/EDUBASE/repos/educommon
|
6
6
|
Author: BARS Group
|
@@ -19,8 +19,8 @@ Classifier: Framework :: Django :: 2.2
|
|
19
19
|
Classifier: Framework :: Django :: 3.0
|
20
20
|
Classifier: Framework :: Django :: 3.1
|
21
21
|
Classifier: Framework :: Django :: 3.2
|
22
|
-
Requires-Dist: packaging
|
23
|
-
Requires-Dist: Django
|
22
|
+
Requires-Dist: packaging<24,>=21.3
|
23
|
+
Requires-Dist: Django<4,>=3.1
|
24
24
|
Requires-Dist: django-mptt
|
25
25
|
Requires-Dist: python-dateutil
|
26
26
|
Requires-Dist: termcolor
|
@@ -28,15 +28,20 @@ Requires-Dist: django-sendfile
|
|
28
28
|
Requires-Dist: requests
|
29
29
|
Requires-Dist: celery
|
30
30
|
Requires-Dist: spyne
|
31
|
-
Requires-Dist: xlsxwriter
|
32
|
-
Requires-Dist: m3-builder
|
33
|
-
Requires-Dist: m3-db-utils
|
34
|
-
Requires-Dist: m3-django-compat
|
35
|
-
Requires-Dist: m3-core
|
36
|
-
Requires-Dist: m3-ui
|
37
|
-
Requires-Dist: m3-objectpack
|
38
|
-
Requires-Dist: m3-simple-report
|
39
|
-
Requires-Dist: m3-spyne-smev
|
40
|
-
Requires-Dist: python-magic
|
41
|
-
Requires-Dist: distro
|
42
|
-
|
31
|
+
Requires-Dist: xlsxwriter<1,>=0.9.3
|
32
|
+
Requires-Dist: m3-builder<2,>=1.2
|
33
|
+
Requires-Dist: m3-db-utils>=0.3.13
|
34
|
+
Requires-Dist: m3-django-compat<2,>=1.10.2
|
35
|
+
Requires-Dist: m3-core<3,>=2.2.16
|
36
|
+
Requires-Dist: m3-ui<3,>=2.2.40
|
37
|
+
Requires-Dist: m3-objectpack<3,>=2.2.49
|
38
|
+
Requires-Dist: m3-simple-report<2,>=1.4.1
|
39
|
+
Requires-Dist: m3-spyne-smev<2,>=0.2.4
|
40
|
+
Requires-Dist: python-magic==0.4.15
|
41
|
+
Requires-Dist: distro<2,>=1.3.0
|
42
|
+
Dynamic: author
|
43
|
+
Dynamic: author-email
|
44
|
+
Dynamic: classifier
|
45
|
+
Dynamic: home-page
|
46
|
+
Dynamic: requires-dist
|
47
|
+
Dynamic: summary
|
@@ -1,6 +1,6 @@
|
|
1
1
|
educommon/__init__.py,sha256=fvsBDL7g8HgOTd-JHOh7TSvMcnUauvGVgPuyA2Z9hUI,419
|
2
2
|
educommon/thread_data.py,sha256=n0XtdesP9H92O3rJ8K6fVnJLiHqyJEfh2xpuT36wzxs,61
|
3
|
-
educommon/version.conf,sha256=
|
3
|
+
educommon/version.conf,sha256=TuNn7q2cu3HkwcaouqP3yia8TIAb8Qd_3O7NmElL2qc,450
|
4
4
|
educommon/about/README.rst,sha256=U48UW5jv-8qHyaV56atzzkNMvzHKXVcWSb_NR06PnMo,2685
|
5
5
|
educommon/about/__init__.py,sha256=H1W0IgW-qX9LCZ49GOJzHdmQGHhh-MA6U1xmNx7WnfM,132
|
6
6
|
educommon/about/apps.py,sha256=GrpJAOE2sF0ukWsqugP_WJS88DO4aL-T3kTLprrJrcA,259
|
@@ -20,11 +20,12 @@ educommon/async_task/consts.py,sha256=LulbNKSlS_T8sNjFqMS7DtaotVI0HibD1a0Iz9iDo8
|
|
20
20
|
educommon/async_task/exceptions.py,sha256=PaaG2nqP0G2eZ-p0yssca2hhxIccil6MYKH6ZteezP8,117
|
21
21
|
educommon/async_task/helpers.py,sha256=HihuIHrszhVQAb-Cs6-l4npnlNAgctItGBJ-oIPQX74,2706
|
22
22
|
educommon/async_task/locker.py,sha256=TwVFhuEGsK0JHPXsWuqx7t2Op2mUKETY5EvHSeuKjc8,3844
|
23
|
-
educommon/async_task/models.py,sha256=
|
23
|
+
educommon/async_task/models.py,sha256=GdIzccMAJ6vZwGAI1HPukp3ceOgbaQ4dzkHi3HO-Ty4,7383
|
24
24
|
educommon/async_task/tasks.py,sha256=T0INbjknXspeMleUkxPSGwJoKJy1_ZSDed4kbQ-RK44,12929
|
25
25
|
educommon/async_task/ui.py,sha256=LD7RwM4-6M_6ZO3Ulwy6_lK7rDPcddg-gB6EOV65494,5829
|
26
26
|
educommon/async_task/migrations/0001_initial.py,sha256=W0HfBmhatmQ7Dy4giGeqaZNtLHiEVAvJqx0AvHaxGZ0,3677
|
27
27
|
educommon/async_task/migrations/0002_task_type_and_status_data.py,sha256=rDGxKnbwu4OqfcodFwA_TR-kfDGRKJhivEBFKuurM30,3359
|
28
|
+
educommon/async_task/migrations/0003_alter_runningtask_options.py,sha256=bZz5o5q66rf9Hh4kmHs-WcV05Q2KhQEbLrs4s9bWzjg,480
|
28
29
|
educommon/async_task/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
30
|
educommon/async_task/templates/ui-js/async-task-list-win.js,sha256=hjVV7S7HcJcpFkeToGAPQh_Icg63QC4jqGAyGOlilK8,749
|
30
31
|
educommon/async_task/templates/ui-js/async-task-revoke.js,sha256=xKDi60ZH6X9CDkauYL27Ry6msmmJ1v14Cm1kv0lMkxg,1257
|
@@ -349,8 +350,8 @@ educommon/ws_log/smev/exceptions.py,sha256=lmy7o2T3dJkqgIhG07qyh5yPqO3qZAYABuT4J
|
|
349
350
|
educommon/ws_log/templates/report/smev_logs.xlsx,sha256=nnYgB0Z_ix8HoxsRICjsZfFRQBdra-5Gd8nWhCxTjYg,10439
|
350
351
|
educommon/ws_log/templates/ui-js/smev-logs-list-window.js,sha256=AGup3D8GTJSY9WdDPj0zBJeYQBFOmGgcbxPOJbKK-nY,513
|
351
352
|
educommon/ws_log/templates/ui-js/smev-logs-report-setting-window.js,sha256=nQ7QYK9frJcE7g7kIt6INg9TlEEJAPPayBJgRaoTePA,1103
|
352
|
-
educommon-3.11.
|
353
|
-
educommon-3.11.
|
354
|
-
educommon-3.11.
|
355
|
-
educommon-3.11.
|
356
|
-
educommon-3.11.
|
353
|
+
educommon-3.11.1.dist-info/METADATA,sha256=VQF15iVt_i9LIJ7OJ_tWSLT8fkwwCge8LlQH7BlElQk,1666
|
354
|
+
educommon-3.11.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
355
|
+
educommon-3.11.1.dist-info/dependency_links.txt,sha256=RNlr4t-BxZRm7e_IfVo1ikr5ln-7viimzLHvQMO1C_Q,43
|
356
|
+
educommon-3.11.1.dist-info/top_level.txt,sha256=z5fbW7bz_0V1foUm_FGcZ9_MTpW3N1dBN7-kEmMowl4,10
|
357
|
+
educommon-3.11.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|