Skip to content
Snippets Groups Projects
Commit 3973b6c7 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'update-boto3' into 'master'

Update boto3 to increase poetry performance

See merge request !1241
parents 95869ff1 2f9c91c9
No related branches found
No related tags found
1 merge request!1241Update boto3 to increase poetry performance
Pipeline #128971 canceled
......@@ -160,7 +160,18 @@ class EditGroupForm(SchoolTermRelatedExtensibleForm):
class Meta:
model = Group
exclude = []
fields = [
"school_term",
"name",
"short_name",
"group_type",
"members",
"owners",
"parent_groups",
"additional_fields",
"photo",
"avatar",
]
widgets = {
"members": ModelSelect2MultipleWidget(
search_fields=[
......@@ -316,7 +327,16 @@ class AnnouncementForm(ExtensibleForm):
class Meta:
model = Announcement
exclude = []
fields = [
"valid_from_date",
"valid_from_time",
"valid_until_date",
"valid_until_time",
"groups",
"persons",
"title",
"description",
]
class ChildGroupsForm(forms.Form):
......@@ -348,7 +368,7 @@ class EditAdditionalFieldForm(forms.ModelForm):
class Meta:
model = AdditionalField
exclude = []
fields = ["title", "field_type", "required", "help_text"]
class EditGroupTypeForm(forms.ModelForm):
......@@ -366,7 +386,7 @@ class SchoolTermForm(ExtensibleForm):
class Meta:
model = SchoolTerm
exclude = []
fields = ["name", "date_start", "date_end"]
class DashboardWidgetOrderForm(ExtensibleForm):
......
......@@ -111,8 +111,8 @@ django-uwsgi-ng = "^2.0"
django-extensions = "^3.1.1"
ipython = "^8.0.0"
django-oauth-toolkit = "^2.0.0"
django-storages = {version = "^1.11.1", optional = true}
boto3 = {version = "^1.17.33", optional = true}
django-storages = {version = "^1.13.2", optional = true}
boto3 = {version = "^1.26.142", optional = true}
django-cleanup = "^7.0.0"
djangorestframework = "^3.12.4"
Whoosh = "^2.7.4"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment