clinicedc 2.0.40__py3-none-any.whl → 2.0.41__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of clinicedc might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clinicedc
3
- Version: 2.0.40
3
+ Version: 2.0.41
4
4
  Summary: A clinical trials data management framework built on Django
5
5
  Keywords: django,clinicedc,edc,clinical trials,research,data management,esource
6
6
  Author: Erik van Widenfelt, Jonathan Willitts
@@ -813,6 +813,7 @@ edc_data_manager/migrations/0039_alter_datadictionary_revision_and_more.py,sha25
813
813
  edc_data_manager/migrations/0040_alter_datadictionary_device_created_and_more.py,sha256=PqvEiyJODvlJ4o2saD58XGrSwQeIJYH0AmD7ls_Mgis,11178
814
814
  edc_data_manager/migrations/0041_alter_dataquery_dm_user_and_more.py,sha256=pIyn3tQznAVNxtvZB7cSGasp3TO7E6RUQzimgQ2iPb8,5713
815
815
  edc_data_manager/migrations/0042_alter_datadictionary_revision_and_more.py,sha256=bmnYjLI_SvG1xvLM1vK3nWC7ULapRzE_s2gT5VjpPN8,3775
816
+ edc_data_manager/migrations/0043_alter_historicalqueryrule_comment_and_more.py,sha256=UALAf6Va4X4VlHjC9KGWVcaF6tUvBx9APKR_tzapCdA,1596
816
817
  edc_data_manager/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
817
818
  edc_data_manager/models/__init__.py,sha256=ObY2Mj5vuDzTJLp6bCEtDDhreKaTVXsgF154IV7fCkU,598
818
819
  edc_data_manager/models/action_item.py,sha256=mWBX0O8rb5ocpCoDXwvRMPHOQ6q4xAhswy2qzsKZ33k,438
@@ -3390,7 +3391,7 @@ edc_vitals/models/fields/waist_circumference.py,sha256=fZcHFDdEwWLjIVLktKrFCD9UU
3390
3391
  edc_vitals/models/fields/weight.py,sha256=zo9_9e3Cpu0UqoRbWS-iDkcDo6fK80b1dDQy4x4MyxE,921
3391
3392
  edc_vitals/utils.py,sha256=vXid44KUXxeaSyund_y5MNXc5DFJs052_PwUAjszE2k,1384
3392
3393
  edc_vitals/validators.py,sha256=vNiElWMs0rRnHRNuVoPLRf0rW_C_0xcfUyep1Y_Si5s,156
3393
- clinicedc-2.0.40.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
3394
- clinicedc-2.0.40.dist-info/WHEEL,sha256=M6du7VZflc4UPsGphmOXHANdgk8zessdJG0DBUuoA-U,78
3395
- clinicedc-2.0.40.dist-info/METADATA,sha256=XE6elxUwHxnKcPXoHKOToOwCc6oDS7xVafqnLbG96X0,15150
3396
- clinicedc-2.0.40.dist-info/RECORD,,
3394
+ clinicedc-2.0.41.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
3395
+ clinicedc-2.0.41.dist-info/WHEEL,sha256=M6du7VZflc4UPsGphmOXHANdgk8zessdJG0DBUuoA-U,78
3396
+ clinicedc-2.0.41.dist-info/METADATA,sha256=UMwf8Gr7JrTCPfD0eE7bl3gmUWgY2G71Vvbrq0BpuRQ,15150
3397
+ clinicedc-2.0.41.dist-info/RECORD,,
@@ -0,0 +1,51 @@
1
+ # Generated by Django 5.2.7 on 2025-10-24 04:17
2
+
3
+ from django.db import migrations, models
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ("edc_data_manager", "0042_alter_datadictionary_revision_and_more"),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.AlterField(
14
+ model_name="historicalqueryrule",
15
+ name="comment",
16
+ field=models.TextField(blank=True, default=""),
17
+ ),
18
+ migrations.AlterField(
19
+ model_name="historicalqueryrule",
20
+ name="query_text",
21
+ field=models.TextField(
22
+ blank=True,
23
+ default="",
24
+ help_text="Generic query text for auto-generated queries.",
25
+ ),
26
+ ),
27
+ migrations.AlterField(
28
+ model_name="historicalqueryrule",
29
+ name="reference_model",
30
+ field=models.CharField(default="", editable=False, max_length=150),
31
+ ),
32
+ migrations.AlterField(
33
+ model_name="queryrule",
34
+ name="comment",
35
+ field=models.TextField(blank=True, default=""),
36
+ ),
37
+ migrations.AlterField(
38
+ model_name="queryrule",
39
+ name="query_text",
40
+ field=models.TextField(
41
+ blank=True,
42
+ default="",
43
+ help_text="Generic query text for auto-generated queries.",
44
+ ),
45
+ ),
46
+ migrations.AlterField(
47
+ model_name="queryrule",
48
+ name="reference_model",
49
+ field=models.CharField(default="", editable=False, max_length=150),
50
+ ),
51
+ ]