Skip to content

Commit

Permalink
Clean up wagtailmetadata migration. Upgrade old apps.
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettc committed Aug 19, 2024
1 parent ed7d21d commit f562dc0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11.2
3 changes: 1 addition & 2 deletions jobs/migrations/0004_recruiterpage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from django.db import migrations, models
import django.db.models.deletion
import wagtail.fields
import wagtailmetadata.models


class Migration(migrations.Migration):
Expand Down Expand Up @@ -31,6 +30,6 @@ class Migration(migrations.Migration):
options={
'ordering': ['title'],
},
bases=(wagtailmetadata.models.WagtailImageMetadataMixin, 'wagtailcore.page', models.Model),
bases=('wagtailcore.page', models.Model),
),
]
10 changes: 5 additions & 5 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Django~=4.2.0
django-allauth==0.51.*
django-anymail==8.6
django-compressor~=4.4.0
django-allauth==64.1.0
django-anymail==11.1
django-compressor~=4.5.0
django-filter==23.5
django-htmx~=1.17.0
django-render-block==0.*
django-htmx~=1.19.0
django-sass-processor==1.2.1
django-template-partials==24.2
django_csp==3.8
django_extensions
libsass~=0.23.0
Expand Down

0 comments on commit f562dc0

Please sign in to comment.