diff --git a/.ddev/config.toml b/.ddev/config.toml index 5cb22d68b2998..ebd8971aff10e 100644 --- a/.ddev/config.toml +++ b/.ddev/config.toml @@ -87,7 +87,7 @@ paramiko = ['LGPL-2.1-only'] # https://github.com/oracle/python-oracledb/blob/main/LICENSE.txt oracledb = ['Apache-2.0'] # https://github.com/psycopg/psycopg/blob/master/LICENSE.txt -"psycopg[binary]" = ['LGPL-3.0-only'] +psycopg = ['LGPL-3.0-only'] # https://github.com/psycopg/psycopg2/blob/master/LICENSE # https://github.com/psycopg/psycopg2/blob/master/doc/COPYING.LESSER psycopg2-binary = ['LGPL-3.0-only', 'BSD-3-Clause'] @@ -121,7 +121,7 @@ packaging = 'https://github.com/pypa/packaging' paramiko = 'https://github.com/paramiko/paramiko' protobuf = 'https://github.com/protocolbuffers/protobuf' psycopg2-binary = 'https://github.com/psycopg/psycopg2' -"psycopg[binary]" = 'https://github.com/psycopg/psycopg' +psycopg = 'https://github.com/psycopg/psycopg' pycryptodomex = 'https://github.com/Legrandin/pycryptodome' redis = 'https://github.com/redis/redis-py' requests = 'https://github.com/psf/requests' diff --git a/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/licenses.py b/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/licenses.py index 5665b7790c5d9..44b5d89b18cd5 100644 --- a/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/licenses.py +++ b/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/licenses.py @@ -53,7 +53,7 @@ # https://github.com/psycopg/psycopg2/blob/master/doc/COPYING.LESSER 'psycopg2-binary': ['LGPL-3.0-only', 'BSD-3-Clause'], # https://github.com/psycopg/psycopg/blob/master/LICENSE.txt - 'psycopg[binary]': ['LGPL-3.0-only'], + 'psycopg': ['LGPL-3.0-only'], # https://github.com/Legrandin/pycryptodome/blob/master/LICENSE.rst 'pycryptodomex': ['Unlicense', 'BSD-2-Clause'], # https://github.com/requests/requests-kerberos/pull/123 @@ -160,7 +160,7 @@ 'paramiko': 'https://github.com/paramiko/paramiko', 'protobuf': 'https://github.com/protocolbuffers/protobuf', 'psycopg2-binary': 'https://github.com/psycopg/psycopg2', - 'psycopg[binary]': 'https://github.com/psycopg/psycopg', + 'psycopg': 'https://github.com/psycopg/psycopg', 'pycryptodomex': 'https://github.com/Legrandin/pycryptodome', 'redis': 'https://github.com/redis/redis-py', 'requests': 'https://github.com/psf/requests',