From d175b6b50fc9c8faa1ccd435ba54e4474f4ec5e7 Mon Sep 17 00:00:00 2001 From: Piotr Senkow Date: Wed, 15 Jan 2025 14:43:24 -0600 Subject: [PATCH] hoping this resolves the postgresql binary issue --- Dockerfile | 2 +- poetry.lock | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 880edc2d..290f1407 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN dnf install -y postgresql-devel gcc && \ poetry show -v # Install PostgreSQL libraries -RUN dnf install -y python3-devel postgresql-devel gcc libpq-devel +RUN dnf install -y python3-devel libpq-devel # Copy application files from the builder stage COPY --from=builder /${appname} /${appname} diff --git a/poetry.lock b/poetry.lock index dd7e2b2d..64c3b27c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2430,4 +2430,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.10" -content-hash = "308f7a413c9fd1a9f5157c4990fe6169354357831e85ebe891fcd1c87d862757" +content-hash = "f9ff0f815187e1a19c4554bd9ff4be8b3a1c13320ca650b4da8dfc10cb524339" diff --git a/pyproject.toml b/pyproject.toml index d3f18d3b..acbe45de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ gen3authz = ">=1.0.4" graphene = ">=2.0.1" jsonschema = ">=3.2" lxml = ">=4.6.5" -psycopg2-binary = ">=2.8.4" +psycopg2-binary = ">=2.8.2,<2.9.0" PyYAML = ">=5.4.1" requests = ">=2.31.0,<3.0.0" simplejson = ">=3.8.1"