Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed Dec 6, 2024
1 parent 1185e02 commit 4e05db8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions backend/backend.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.10
FROM python:3.9
WORKDIR /app/
COPY requirements.txt /app/
RUN pip install --upgrade pip && pip install -r requirements.txt
RUN pip install -r requirements.txt
ARG RECOTEM_TESTING=false
RUN bash -c "if \"$RECOTEM_TESTING\"; then pip install pytest pytest-celery pytest-cov pytest-django && python -c \"from irspack.dataset import MovieLens100KDataManager; MovieLens100KDataManager(force_download=True)\"; fi"

Expand Down
4 changes: 2 additions & 2 deletions backend/celery.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.10
FROM python:3.9
WORKDIR /app/
COPY requirements.txt /app/
RUN pip install --upgrade pip && pip install -r requirements.txt
RUN pip install -r requirements.txt
COPY recotem/ /app
EXPOSE 80
CMD ["/app/celery.sh"]
5 changes: 3 additions & 2 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
boto3>=1.4.4
celery==5.0.5
celery==5.0.6
Django==3.2
django-celery-results==2.0.1
django-cleanup==5.2.0
Expand All @@ -13,8 +13,9 @@ dj-rest-auth==2.1.7
pyjwt==2.1.0
drf_spectacular==0.16.0
optuna==2.7.0
pandas==1.3.1
pandas==1.3.5
irspack==0.1.16
numpy==1.19.5
scikit-learn==0.24.2
whitenoise==5.2.0
django-environ==0.4.5
Expand Down
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"vuex": "^3.4.0"
},
"devDependencies": {
"@playwright/test": "^1.12.3",
"@playwright/test": "<1.45",
"@mdi/font": "^5.9.55",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^4.18.0",
Expand All @@ -44,7 +44,7 @@
"eslint-plugin-vue": "^6.2.2",
"flush-promises": "^1.0.2",
"openapi-typescript": "^3.3.1",
"playwright-chromium": "^1.13.1",
"playwright-chromium": "<1.45",
"playwright-cli": "^0.180.0",
"prettier": "^2.2.1",
"sass": "^1.32.0",
Expand Down

0 comments on commit 4e05db8

Please sign in to comment.