From a3ef19231ebfb12b98fd2e10f5ac17fc65aeb57b Mon Sep 17 00:00:00 2001 From: pkdash Date: Thu, 26 Dec 2024 16:04:03 -0500 Subject: [PATCH 1/2] [#233] updating asyncpg version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e37d5d6..ea54d30 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ aiofiles==0.8.0 alembic==1.7.7 anyio==3.5.0 asgiref==3.5.0 -asyncpg==0.25.0 +asyncpg==0.26.0 attrs==21.4.0 Authlib==0.15.5 beautifulsoup4==4.10.0 From fc29de644e2e324be988706b812c808474135867 Mon Sep 17 00:00:00 2001 From: pkdash Date: Thu, 26 Dec 2024 16:05:31 -0500 Subject: [PATCH 2/2] [#233] adding installation of build dependencies to docker file --- Dockerfile-dev | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile-dev b/Dockerfile-dev index 8d4bae4..b2df595 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -1,5 +1,8 @@ FROM python:3.10-slim +# Install build dependencies for asyncpg and other C extensions +RUN apt-get update && apt-get install -y build-essential libffi-dev gcc python3-dev + WORKDIR /dspback COPY requirements.txt requirements.txt