codeforlife-portal 6.46.0__py2.py3-none-any.whl → 6.46.1__py2.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.
Potentially problematic release.
This version of codeforlife-portal might be problematic. Click here for more details.
- cfl_common/common/migrations/0053_clean_class_data.py +24 -0
- {codeforlife_portal-6.46.0.dist-info → codeforlife_portal-6.46.1.dist-info}/METADATA +2 -2
- {codeforlife_portal-6.46.0.dist-info → codeforlife_portal-6.46.1.dist-info}/RECORD +7 -6
- portal/__init__.py +1 -1
- {codeforlife_portal-6.46.0.dist-info → codeforlife_portal-6.46.1.dist-info}/LICENSE.md +0 -0
- {codeforlife_portal-6.46.0.dist-info → codeforlife_portal-6.46.1.dist-info}/WHEEL +0 -0
- {codeforlife_portal-6.46.0.dist-info → codeforlife_portal-6.46.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from datetime import date
|
|
2
|
+
|
|
3
|
+
from django.apps.registry import Apps
|
|
4
|
+
from django.db import migrations, models
|
|
5
|
+
|
|
6
|
+
def clean_early_class_data(apps: Apps, *args):
|
|
7
|
+
Class = apps.get_model("common", "Class")
|
|
8
|
+
|
|
9
|
+
Class.objects.filter(
|
|
10
|
+
creation_time__date__lt = date(2021, 10, 15)
|
|
11
|
+
).update(creation_time = None)
|
|
12
|
+
|
|
13
|
+
class Migration(migrations.Migration):
|
|
14
|
+
|
|
15
|
+
dependencies = [
|
|
16
|
+
("common", "0052_add_cse_fields")
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
operations = [
|
|
20
|
+
migrations.RunPython(
|
|
21
|
+
code=clean_early_class_data,
|
|
22
|
+
reverse_code=migrations.RunPython.noop,
|
|
23
|
+
),
|
|
24
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: codeforlife-portal
|
|
3
|
-
Version: 6.46.
|
|
3
|
+
Version: 6.46.1
|
|
4
4
|
Classifier: Programming Language :: Python
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.8
|
|
6
6
|
Classifier: Framework :: Django
|
|
@@ -25,7 +25,7 @@ Requires-Dist: django-classy-tags ==2.0.0
|
|
|
25
25
|
Requires-Dist: libsass ==0.23.0
|
|
26
26
|
Requires-Dist: phonenumbers ==8.12.12
|
|
27
27
|
Requires-Dist: more-itertools ==8.7.0
|
|
28
|
-
Requires-Dist: cfl-common ==6.46.
|
|
28
|
+
Requires-Dist: cfl-common ==6.46.1
|
|
29
29
|
Requires-Dist: django-ratelimit ==3.0.1
|
|
30
30
|
Requires-Dist: django-preventconcurrentlogins ==0.8.2
|
|
31
31
|
Requires-Dist: django-csp ==3.7
|
|
@@ -66,6 +66,7 @@ cfl_common/common/migrations/0049_anonymise_orphan_users.py,sha256=tw9xMrDMRPDCO
|
|
|
66
66
|
cfl_common/common/migrations/0050_anonymise_orphan_schools.py,sha256=_KCkSkoObTpLplX6gXvlV3JXpddn7neyJEa8YKFWeW0,869
|
|
67
67
|
cfl_common/common/migrations/0051_verify_returning_users.py,sha256=WMpoTA24WgimLEVmKXuPqZ3aZdClRhY5vuGtYseeJp0,758
|
|
68
68
|
cfl_common/common/migrations/0052_add_cse_fields.py,sha256=NhUkkcu2EBzJFhewCTccQ63AoANkGq1CXbFWIGJG9jk,2232
|
|
69
|
+
cfl_common/common/migrations/0053_clean_class_data.py,sha256=lBKlDa49YwT660o-Ot6IYe4I1KfervTn4uAijda0nyw,584
|
|
69
70
|
cfl_common/common/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
71
|
cfl_common/common/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
72
|
cfl_common/common/tests/test_migration_aimmo_characters.py,sha256=pdCCsns90Qz05QqmaBUYK18jKe9aP-symtZjkKG4rag,1079
|
|
@@ -106,7 +107,7 @@ example_project/portal_test_settings.py,sha256=frp_XMpd-z1g3VFCRxB2w7AaFW2ivRVKn
|
|
|
106
107
|
example_project/settings.py,sha256=XRZZvASoIl5a9xe3masTq_CUBleuJq9ByHx8f_e2UFc,5613
|
|
107
108
|
example_project/urls.py,sha256=OVeRQ-TCpzHISBRuzqD0yd3ewF7H5U3c-f2p2alfUD0,430
|
|
108
109
|
example_project/wsgi.py,sha256=U1W6WzZxZaIdYZ5tks7w9fqp5WS5qvn2iThsVcskrWw,829
|
|
109
|
-
portal/__init__.py,sha256=
|
|
110
|
+
portal/__init__.py,sha256=C-WkT_jxkIWg_1sKDn5_MsGHx3yCDs4ACDedjxKYDMU,23
|
|
110
111
|
portal/admin.py,sha256=on1-zNRnZvf2cwBN6GVRVYRhkaksrCgfzX8XPWtkvz8,6062
|
|
111
112
|
portal/app_settings.py,sha256=DhWLQOwM0zVOXE3O5TNKbMM9K6agfLuCsHOdr1J7xEI,651
|
|
112
113
|
portal/backends.py,sha256=2Dss6_WoQwPuDzJUF1yEaTQTNG4eUrD12ujJQ5cp5Tc,812
|
|
@@ -651,8 +652,8 @@ portal/views/two_factor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
651
652
|
portal/views/two_factor/core.py,sha256=O_wcBeFqdPYSGNGv-pT_vbs5-Dj1Z-Jfkd6f9-E5yZI,760
|
|
652
653
|
portal/views/two_factor/form.py,sha256=lnHNKI-BMlpncTuW3zUzjPaJJNuEra2I_nOam0eOKFY,257
|
|
653
654
|
portal/views/two_factor/profile.py,sha256=tkl_ludo8arMtd5LKNmohM66vpC_YQiP-0nspTSJiJ4,383
|
|
654
|
-
codeforlife_portal-6.46.
|
|
655
|
-
codeforlife_portal-6.46.
|
|
656
|
-
codeforlife_portal-6.46.
|
|
657
|
-
codeforlife_portal-6.46.
|
|
658
|
-
codeforlife_portal-6.46.
|
|
655
|
+
codeforlife_portal-6.46.1.dist-info/LICENSE.md,sha256=9AbRlCDqD2D1tPibimysFv3zg3AIc49-eyv9aEsyq9w,115
|
|
656
|
+
codeforlife_portal-6.46.1.dist-info/METADATA,sha256=dZQ9D92rfDoMHysvoaPDHeTUwiH2x5xUsoTeoPcjsNg,3474
|
|
657
|
+
codeforlife_portal-6.46.1.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
658
|
+
codeforlife_portal-6.46.1.dist-info/top_level.txt,sha256=8e5pdsuIoTqEAMqpelHBjGjLbffcBtgOoggmd2q7nMw,41
|
|
659
|
+
codeforlife_portal-6.46.1.dist-info/RECORD,,
|
portal/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "6.46.
|
|
1
|
+
__version__ = "6.46.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|