Skip to content

Commit

Permalink
Bump to edc==0.6.19, add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanWillitts committed Nov 29, 2024
1 parent 85278cd commit 0190eb0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ unreleased
------
- minor update to forms_reference output to fix trailing whitespace
- drop Django 4.1 support
- bump to edc 0.6.18
- bump to edc 0.6.19

0.1.56
------
Expand Down
19 changes: 19 additions & 0 deletions effect_reports/migrations/0008_alter_serumcragdate_created.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 5.1.3 on 2024-11-28 18:27

import edc_utils.date
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("effect_reports", "0007_update_rm792_views"),
]

operations = [
migrations.AlterField(
model_name="serumcragdate",
name="created",
field=models.DateTimeField(default=edc_utils.date.get_utcnow),
),
]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ zip_safe = False
include_package_data = True
packages = find:
install_requires =
edc==0.6.18
edc==0.6.19
edc-csf==0.3.6
edc-microbiology==0.3.10
beautifulsoup4
Expand Down

0 comments on commit 0190eb0

Please sign in to comment.