model-bakery 1.20.3__tar.gz → 1.20.4__tar.gz
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 model-bakery might be problematic. Click here for more details.
- {model_bakery-1.20.3 → model_bakery-1.20.4}/PKG-INFO +1 -1
- model_bakery-1.20.4/model_bakery/__about__.py +1 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/baker.py +5 -3
- model_bakery-1.20.3/model_bakery/__about__.py +0 -1
- {model_bakery-1.20.3 → model_bakery-1.20.4}/.gitignore +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/LICENSE +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/README.md +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/__init__.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/_types.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/content_types.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/exceptions.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/generators.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/gis.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/mock_file.txt +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/mock_img.jpeg +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/py.typed +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/random_gen.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/recipe.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/timezone.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/model_bakery/utils.py +0 -0
- {model_bakery-1.20.3 → model_bakery-1.20.4}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: model-bakery
|
|
3
|
-
Version: 1.20.
|
|
3
|
+
Version: 1.20.4
|
|
4
4
|
Summary: Smart object creation facility for Django.
|
|
5
5
|
Project-URL: Homepage, https://github.com/model-bakers/model_bakery
|
|
6
6
|
Author-email: berin <bernardoxhc@gmail.com>, amureki <amureki@hey.com>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.20.4"
|
|
@@ -590,9 +590,6 @@ class Baker(Generic[M]):
|
|
|
590
590
|
else:
|
|
591
591
|
field.fill_optional = field.name in self.fill_in_optional
|
|
592
592
|
|
|
593
|
-
if _is_auto_datetime_field(field):
|
|
594
|
-
return True
|
|
595
|
-
|
|
596
593
|
if isinstance(field, FileField) and not self.create_files:
|
|
597
594
|
return True
|
|
598
595
|
|
|
@@ -647,8 +644,13 @@ class Baker(Generic[M]):
|
|
|
647
644
|
if not attrs:
|
|
648
645
|
return
|
|
649
646
|
|
|
647
|
+
# use .update() to force update auto_now fields
|
|
650
648
|
instance.__class__.objects.filter(pk=instance.pk).update(**attrs)
|
|
651
649
|
|
|
650
|
+
# to make the resulting instance has the specified values
|
|
651
|
+
for k, v in attrs.items():
|
|
652
|
+
setattr(instance, k, v)
|
|
653
|
+
|
|
652
654
|
def _handle_one_to_many(self, instance: Model, attrs: Dict[str, Any]):
|
|
653
655
|
for key, values in attrs.items():
|
|
654
656
|
manager = getattr(instance, key)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.20.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|