fix(api): model_bakery is a dev dependency

This commit is contained in:
jo 2022-03-01 13:11:15 +01:00 committed by Kyle Robbertze
parent 000f09b095
commit 4da8d8c06b
2 changed files with 1 additions and 2 deletions

View File

@ -6,5 +6,4 @@ django-filter
djangorestframework
drf-spectacular
markdown
model_bakery
psycopg2

View File

@ -35,13 +35,13 @@ setup(
"django-filter",
"drf-spectacular",
"markdown",
"model_bakery",
],
extras_require={
"prod": [
"psycopg2",
],
"dev": [
"model_bakery",
"psycopg2-binary",
],
},