And remove prod extra requires for api because ./setup.py install
don't handle extra requires.
This commit is contained in:
jo 2021-09-17 07:23:26 +02:00
parent 7731197c46
commit aad92c4ac1
2 changed files with 7 additions and 8 deletions

View file

@ -28,11 +28,10 @@ setup(
"django-url-filter",
"markdown",
"model_bakery",
"psycopg2", # TODO: Move to prod requires
],
extras_require={
"prod": [
"psycopg2",
],
"prod": [],
"dev": [
"psycopg2-binary",
],