From 73932bbdf04db4fc78e2122f23079c3b09f13b43 Mon Sep 17 00:00:00 2001 From: alvertogit <36294057+alvertogit@users.noreply.github.com> Date: Sun, 25 Aug 2024 09:48:26 +0200 Subject: [PATCH] upgraded dependencies --- .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- README.md | 2 +- requirements.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f5f620e..ee5c5a6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.6.1 + rev: v0.6.2 hooks: # Run the linter. - id: ruff diff --git a/Dockerfile b/Dockerfile index 1c23bea..dae0113 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY requirements.txt /app RUN python3 -m venv . RUN python3 -m pip install pip==24.2 -RUN python3 -m pip install setuptools==72.2.0 +RUN python3 -m pip install setuptools==73.0.1 RUN python3 -m pip install --no-cache-dir -r requirements.txt COPY ./app /app EXPOSE 5000 diff --git a/README.md b/README.md index 3b1f551..84de1f8 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Command to configure virtual environment with [venv]: ~/deeplearning_flask$ python3 -m venv .venv ~/deeplearning_flask$ source .venv/bin/activate (.venv)~/deeplearning_flask$ python3 -m pip install pip==24.2 -(.venv)~/deeplearning_flask$ python3 -m pip install setuptools==72.2.0 +(.venv)~/deeplearning_flask$ python3 -m pip install setuptools==73.0.1 (.venv)~/deeplearning_flask$ python3 -m pip install -r requirements_dev.txt (.venv)~/deeplearning_flask$ pre-commit install ``` diff --git a/requirements.txt b/requirements.txt index 5dee7b7..ee8eddd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,6 @@ pre-commit==3.8.0 pur==7.3.2 pytest==8.3.2 requests==2.32.3 -ruff==0.6.1 +ruff==0.6.2 scikit-image==0.24.0 tensorflow==2.17.0