aa-alumni 0.3.0__tar.gz → 0.4.0__tar.gz
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 aa-alumni might be problematic. Click here for more details.
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/PKG-INFO +8 -5
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/README.md +4 -2
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/__init__.py +1 -1
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/models.py +1 -1
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/pyproject.toml +1 -1
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/LICENSE +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/admin.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/app_settings.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/apps.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/de/LC_MESSAGES/django.mo +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/de/LC_MESSAGES/django.po +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/en/LC_MESSAGES/django.mo +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/en/LC_MESSAGES/django.po +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/management/commands/__init__.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/management/commands/alumni_state.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0001_initial.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0002_auto_20211230_0147.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0003_alter_alumnisetup_options_and_more.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/__init__.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/providers.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/signals.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/tasks.py +0 -0
- {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/tests/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-alumni
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Integration with Alliance Auths State System, creates and maintains an Alumni State for past members of an Alliance and/or Corporation
|
|
5
5
|
Keywords: allianceauth,eveonline
|
|
6
6
|
Author-email: Joel Falknau <joel.falknau@gmail.com>
|
|
@@ -22,7 +22,8 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
22
22
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
23
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
24
24
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
25
|
-
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Requires-Dist: allianceauth>=4.6.4,<6
|
|
26
27
|
Requires-Dist: django-solo>=2,<3
|
|
27
28
|
Project-URL: Homepage, https://gitlab.com/tactical-supremacy/aa-alumni
|
|
28
29
|
Project-URL: Source, https://gitlab.com/tactical-supremacy/aa-alumni
|
|
@@ -58,11 +59,13 @@ Configure your Auth settings (`local.py`) as follows:
|
|
|
58
59
|
# Tasks
|
|
59
60
|
CELERYBEAT_SCHEDULE['alumni_run_alumni_check_all'] = {
|
|
60
61
|
'task': 'alumni.tasks.run_alumni_check_all',
|
|
61
|
-
'schedule': crontab(minute=
|
|
62
|
+
'schedule': crontab(minute="0", hour="0", day_of_week="4"),
|
|
63
|
+
'apply_offset': True,
|
|
62
64
|
}
|
|
63
65
|
CELERYBEAT_SCHEDULE['alumni_run_update_all_models'] = {
|
|
64
66
|
'task': 'alumni.tasks.update_all_models',
|
|
65
|
-
'schedule': crontab(minute=
|
|
67
|
+
'schedule': crontab(minute="0", hour="0", day_of_week="3"),
|
|
68
|
+
'apply_offset': True,
|
|
66
69
|
}
|
|
67
70
|
```
|
|
68
71
|
|
|
@@ -28,11 +28,13 @@ Configure your Auth settings (`local.py`) as follows:
|
|
|
28
28
|
# Tasks
|
|
29
29
|
CELERYBEAT_SCHEDULE['alumni_run_alumni_check_all'] = {
|
|
30
30
|
'task': 'alumni.tasks.run_alumni_check_all',
|
|
31
|
-
'schedule': crontab(minute=
|
|
31
|
+
'schedule': crontab(minute="0", hour="0", day_of_week="4"),
|
|
32
|
+
'apply_offset': True,
|
|
32
33
|
}
|
|
33
34
|
CELERYBEAT_SCHEDULE['alumni_run_update_all_models'] = {
|
|
34
35
|
'task': 'alumni.tasks.update_all_models',
|
|
35
|
-
'schedule': crontab(minute=
|
|
36
|
+
'schedule': crontab(minute="0", hour="0", day_of_week="3"),
|
|
37
|
+
'apply_offset': True,
|
|
36
38
|
}
|
|
37
39
|
```
|
|
38
40
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0003_alter_alumnisetup_options_and_more.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|