model-bakery 1.20.1__tar.gz → 1.20.2__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.1 → model_bakery-1.20.2}/PKG-INFO +1 -1
- model_bakery-1.20.2/model_bakery/__about__.py +1 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/baker.py +5 -1
- model_bakery-1.20.1/model_bakery/__about__.py +0 -1
- {model_bakery-1.20.1 → model_bakery-1.20.2}/.gitignore +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/LICENSE +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/README.md +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/__init__.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/_types.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/content_types.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/exceptions.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/generators.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/gis.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/mock_file.txt +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/mock_img.jpeg +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/py.typed +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/random_gen.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/recipe.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/timezone.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/model_bakery/utils.py +0 -0
- {model_bakery-1.20.1 → model_bakery-1.20.2}/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.2
|
|
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.2"
|
|
@@ -699,6 +699,8 @@ class Baker(Generic[M]):
|
|
|
699
699
|
ct_field_name = data["content_type_field"]
|
|
700
700
|
oid_field_name = data["object_id_field"]
|
|
701
701
|
value = data["value"]
|
|
702
|
+
if callable(value):
|
|
703
|
+
value = value()
|
|
702
704
|
if is_iterator(value):
|
|
703
705
|
value = next(value)
|
|
704
706
|
if value is None:
|
|
@@ -714,7 +716,9 @@ class Baker(Generic[M]):
|
|
|
714
716
|
setattr(
|
|
715
717
|
instance,
|
|
716
718
|
ct_field_name,
|
|
717
|
-
contenttypes_models.ContentType.objects.get_for_model(
|
|
719
|
+
contenttypes_models.ContentType.objects.get_for_model(
|
|
720
|
+
value, for_concrete_model=False
|
|
721
|
+
),
|
|
718
722
|
)
|
|
719
723
|
setattr(instance, oid_field_name, value.pk)
|
|
720
724
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.20.1"
|
|
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
|