diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4161620f..b009f216 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -29,7 +29,7 @@ jobs: with: poetry-version: 1.2.2 - name: Preinstall dependencies (temporary) - run: poetry run pip install "Cython<3.0" "pyyaml==5.4.1" --no-build-isolation + run: poetry run pip install "Cython<3.0" "pyyaml==5.4.1" "django-allauth==0.45.0" --no-build-isolation - name: Install dependencies run: poetry install - name: Django Testing project diff --git a/Dockerfile b/Dockerfile index 0d68098e..56da734c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev libress npm i -P --prefix .. && \ pip install poetry==1.2.2 && \ poetry config virtualenvs.create false && \ - poetry run pip install "Cython<3.0" "pyyaml==5.4.1" --no-build-isolation && \ + poetry run pip install "Cython<3.0" "pyyaml==5.4.1" "django-allauth==0.45.0" --no-build-isolation && \ poetry install --no-dev --no-interaction --no-ansi && \ apk --purge del .build-deps