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.

Files changed (23) hide show
  1. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/PKG-INFO +8 -5
  2. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/README.md +4 -2
  3. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/__init__.py +1 -1
  4. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/models.py +1 -1
  5. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/pyproject.toml +1 -1
  6. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/LICENSE +0 -0
  7. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/admin.py +0 -0
  8. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/app_settings.py +0 -0
  9. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/apps.py +0 -0
  10. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/de/LC_MESSAGES/django.mo +0 -0
  11. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/de/LC_MESSAGES/django.po +0 -0
  12. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/en/LC_MESSAGES/django.mo +0 -0
  13. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/locale/en/LC_MESSAGES/django.po +0 -0
  14. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/management/commands/__init__.py +0 -0
  15. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/management/commands/alumni_state.py +0 -0
  16. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0001_initial.py +0 -0
  17. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0002_auto_20211230_0147.py +0 -0
  18. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/0003_alter_alumnisetup_options_and_more.py +0 -0
  19. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/migrations/__init__.py +0 -0
  20. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/providers.py +0 -0
  21. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/signals.py +0 -0
  22. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/tasks.py +0 -0
  23. {aa_alumni-0.3.0 → aa_alumni-0.4.0}/alumni/tests/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: aa-alumni
3
- Version: 0.3.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
- Requires-Dist: allianceauth>=4,<5
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=37, hour=3, day_of_week=4),
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=37, hour=3, day_of_week=3),
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=37, hour=3, day_of_week=4),
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=37, hour=3, day_of_week=3),
36
+ 'schedule': crontab(minute="0", hour="0", day_of_week="3"),
37
+ 'apply_offset': True,
36
38
  }
37
39
  ```
38
40
 
@@ -1,5 +1,5 @@
1
1
  """
2
2
  Integration with Alliance Auths State System, creates and maintains an Alumni State for past members of an Alliance and/or Corporation
3
3
  """
4
- __version__ = "0.3.0"
4
+ __version__ = "0.4.0"
5
5
  __title__ = "Alumni"
@@ -18,7 +18,7 @@ class AlumniSetup(SingletonModel):
18
18
  blank=True,
19
19
  help_text=_("Characters with these Alliances in their History will be given Alumni Status"))
20
20
 
21
- def __str__(self):
21
+ def __str__(self) -> str:
22
22
  return _("Alumni Config")
23
23
 
24
24
  class Meta:
@@ -39,7 +39,7 @@ dynamic = [
39
39
  "version",
40
40
  ]
41
41
  dependencies = [
42
- "allianceauth>=4,<5",
42
+ "allianceauth>=4.6.4,<6",
43
43
  "django-solo>=2,<3",
44
44
  ]
45
45
  urls.Homepage = "https://gitlab.com/tactical-supremacy/aa-alumni"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes