diff --git a/datadog_checks_base/datadog_checks/base/data/agent_requirements.in b/datadog_checks_base/datadog_checks/base/data/agent_requirements.in index 406b9d412952f..6418dc1853bd2 100644 --- a/datadog_checks_base/datadog_checks/base/data/agent_requirements.in +++ b/datadog_checks_base/datadog_checks/base/data/agent_requirements.in @@ -56,7 +56,7 @@ prometheus-client==0.16.0; python_version > '3.0' protobuf==3.17.3; python_version < '3.0' protobuf==3.20.2; python_version > '3.0' psutil==5.9.0 -psycopg-binary==3.1.9; python_version > '3.0' +psycopg[binary]==3.1.9; python_version > '3.0' pyasn1==0.4.6 pycryptodomex==3.10.1 pydantic==1.10.8; python_version > '3.0' diff --git a/pgbouncer/pyproject.toml b/pgbouncer/pyproject.toml index cb97804d1b1ef..ae55b9253d8ed 100644 --- a/pgbouncer/pyproject.toml +++ b/pgbouncer/pyproject.toml @@ -39,7 +39,7 @@ license = "BSD-3-Clause" [project.optional-dependencies] deps = [ - "psycopg-binary==3.1.9; python_version > '3.0'", + "psycopg[binary]==3.1.9; python_version > '3.0'", ] [project.urls] diff --git a/postgres/pyproject.toml b/postgres/pyproject.toml index ffa8dd545d927..b981c23049017 100644 --- a/postgres/pyproject.toml +++ b/postgres/pyproject.toml @@ -43,7 +43,7 @@ deps = [ "cachetools==3.1.1; python_version < '3.0'", "cachetools==5.3.0; python_version > '3.0'", "futures==3.4.0; python_version < '3.0'", - "psycopg-binary==3.1.9; python_version > '3.0'", + "psycopg[binary]==3.1.9; python_version > '3.0'", "semver==2.13.0", ]