fix(api): upgrade psycopg to v3.1

This commit is contained in:
jo 2023-04-03 12:48:57 +02:00 committed by Kyle Robbertze
parent b474eb3f64
commit bfacda11df
2 changed files with 3 additions and 3 deletions

View File

@ -5,5 +5,5 @@ django-filter>=2.4.0,<23.2
django>=4.2.0,<4.3 django>=4.2.0,<4.3
djangorestframework>=3.12.1,<3.15 djangorestframework>=3.12.1,<3.15
drf-spectacular>=0.22.1,<0.27 drf-spectacular>=0.22.1,<0.27
psycopg2>=2.8.6,<2.10 psycopg[c]>=3.1.8,<3.2
requests>=2.25.1,<2.29 requests>=2.25.1,<2.29

View File

@ -33,14 +33,14 @@ setup(
], ],
extras_require={ extras_require={
"prod": [ "prod": [
"psycopg2>=2.8.6,<2.10", "psycopg[c]>=3.1.8,<3.2",
], ],
"dev": [ "dev": [
"django-coverage-plugin>=3.0.0,<3.1", "django-coverage-plugin>=3.0.0,<3.1",
"django-stubs>=1.14.0,<1.17", "django-stubs>=1.14.0,<1.17",
"djangorestframework-stubs>=1.8.0,<1.11", "djangorestframework-stubs>=1.8.0,<1.11",
"model_bakery>=1.10.1,<1.11", "model_bakery>=1.10.1,<1.11",
"psycopg2-binary>=2.8.6,<2.10", "psycopg[binary]>=3.1.8,<3.2",
"pylint-django>=2.5.3,<2.6", "pylint-django>=2.5.3,<2.6",
"pytest-django>=4.5.2,<4.6", "pytest-django>=4.5.2,<4.6",
"requests-mock>=1.10.0,<1.11", "requests-mock>=1.10.0,<1.11",