Skip to content

Commit c885770

Browse files
committed
upgraded dependencies
1 parent 744c1a4 commit c885770

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
33
# Ruff version.
4-
rev: v0.15.5
4+
rev: v0.15.6
55
hooks:
66
# Run the linter.
77
- id: ruff

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WORKDIR /app
99
COPY requirements.txt /app
1010
RUN python3 -m venv .
1111
RUN python3 -m pip install pip==26.0.1
12-
RUN python3 -m pip install setuptools==82.0.0
12+
RUN python3 -m pip install setuptools==82.0.1
1313
RUN python3 -m pip install --no-cache-dir -r requirements.txt
1414
COPY ./app /app
1515
EXPOSE 5000

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Command to configure virtual environment with [venv]:
4444
~/deeplearning_flask$ python3 -m venv .venv
4545
~/deeplearning_flask$ source .venv/bin/activate
4646
(.venv)~/deeplearning_flask$ python3 -m pip install pip==26.0.1
47-
(.venv)~/deeplearning_flask$ python3 -m pip install setuptools==82.0.0
47+
(.venv)~/deeplearning_flask$ python3 -m pip install setuptools==82.0.1
4848
(.venv)~/deeplearning_flask$ python3 -m pip install -r requirements_dev.txt
4949
(.venv)~/deeplearning_flask$ pre-commit install
5050
```

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Flask==3.1.3
22
gunicorn==25.1.0
3-
numpy==2.4.2
3+
numpy==2.4.3
44
Pillow==12.1.1
55
pre-commit==4.5.1
66
pur==7.3.3
77
pytest==9.0.2
88
requests==2.32.5
9-
ruff==0.15.5
9+
ruff==0.15.6
1010
scikit-image==0.26.0
1111
tensorflow==2.21.0

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-r requirements.txt
2-
jupyterlab==4.5.5
2+
jupyterlab==4.5.6
33
matplotlib==3.10.8

0 commit comments

Comments
 (0)