Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #110 from PascalEgn/bump-django
Browse files Browse the repository at this point in the history
global: bump django version
  • Loading branch information
PascalEgn authored Sep 4, 2024
2 parents 330505d + 10d13a4 commit 5036614
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 25 deletions.
2 changes: 1 addition & 1 deletion backoffice/backoffice/workflows/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ResolutionDags(models.TextChoices):
accept_curate = "accept_curate", "author_create_approved_dag"


DECISION_CHOICES = ResolutionDags.choices
DECISION_CHOICES = ResolutionDags


class AuthorCreateDags(models.TextChoices):
Expand Down
4 changes: 2 additions & 2 deletions backoffice/backoffice/workflows/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ class Workflow(models.Model):

workflow_type = models.CharField(
max_length=30,
choices=WorkflowType.choices,
choices=WorkflowType,
default=DEFAULT_WORKFLOW_TYPE,
)
data = models.JSONField()
status = models.CharField(
max_length=30,
choices=StatusChoices.choices,
choices=StatusChoices,
default=DEFAULT_STATUS_CHOICE,
)
core = models.BooleanField(default=False)
Expand Down
41 changes: 21 additions & 20 deletions backoffice/poetry.lock

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

4 changes: 2 additions & 2 deletions backoffice/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ argon2-cffi = "23.1.0"
redis = "5.0.1"
hiredis = "2.2.3"
celery = "5.3.4"
django-celery-beat = "2.5.0"
django-celery-beat = "2.7.0"
flower = "2.0.1"
uvicorn = {version = "0.23.2", extras = ["standard"]}
django = "4.2.6"
django = "5.1.0"
django-environ = "0.11.2"
django-model-utils = "4.3.1"
django-allauth = "0.57.0"
Expand Down

0 comments on commit 5036614

Please sign in to comment.