Skip to content

Commit

Permalink
Update Django, Wagtail and Strawberry (#4090)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno authored Sep 30, 2024
1 parent c78a65a commit acecddf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
34 changes: 17 additions & 17 deletions backend/pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ authors = [
]
requires-python = "<3.13,>=3.11"
dependencies = [
"django==5.0.8",
"django==5.1.1",
"django-environ==0.10.0",
"django-model-utils==4.5.1",
"django-timezone-field==7.0",
Expand All @@ -63,7 +63,7 @@ dependencies = [
"django-queryinspect<2.0.0,>=1.1.0",
"lxml<5.0.0,>=4.5.0",
"unidecode<2.0.0,>=1.1.1",
"strawberry-graphql==0.237.1",
"strawberry-graphql==0.243.1",
"Werkzeug<2.0.0,>=1.0.1",
"django-import-export<4.0.0,>=3.2.0",
"dal-admin-filters==1.1.0",
Expand All @@ -79,8 +79,8 @@ dependencies = [
"stripe==10.5.0",
"djangorestframework==3.15.2",
"l18n<2022.0,>=2021.3",
"wagtail==6.1.3",
"wagtail-localize==1.9",
"wagtail==6.2.2",
"wagtail-localize==1.10",
"celery==5.4.0",
"wagtail-headless-preview==0.8.0",
"Jinja2>=3.1.3",
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/applications/pycon_backend/worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ data "template_file" "user_data" {

resource "aws_instance" "instance_1" {
ami = var.ecs_arm_ami
instance_type = "t4g.micro"
instance_type = local.is_prod ? "t4g.micro" : "t4g.nano"
subnet_id = data.aws_subnet.private_1a.id
availability_zone = "eu-central-1a"
vpc_security_group_ids = [
Expand Down

0 comments on commit acecddf

Please sign in to comment.