Use psycopg2-binary instead of psycopg2
All checks were successful
CI / lint (push) Successful in 13s
CI / test (push) Successful in 8s

- Updates the psycopg2 dependency to psycopg2-binary.
- This simplifies installation by avoiding build dependencies.
- Resolves potential build issues on systems without libpq.
This commit is contained in:
Roger Gonzalez 2025-05-17 14:00:24 -03:00
parent a1307e9223
commit 1227a89133
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

@ -7,7 +7,7 @@ requires-python = "~=3.9"
readme = "README.md"
license = "GPL-3.0-or-later"
dependencies = [
"psycopg2>=2.9.10,<3",
"psycopg2-binary>=2.9.10,<3",
"pyyaml>=6.0.2,<7",
]