Skip to content

Commit

Permalink
upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alvertogit committed Aug 4, 2024
1 parent 589b349 commit 186d9e9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.5.5
rev: v0.5.6
hooks:
# Run the linter.
- id: ruff
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt /app
RUN python3 -m venv .
RUN python3 -m pip install pip==24.1.2
RUN python3 -m pip install setuptools==71.1.0
RUN python3 -m pip install pip==24.2
RUN python3 -m pip install setuptools==72.1.0
RUN python3 -m pip install --no-cache-dir -r requirements.txt
COPY ./app /app
EXPOSE 5000
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Command to configure virtual environment with [venv]:
```bash
~/deeplearning_flask$ python3 -m venv .venv
~/deeplearning_flask$ source .venv/bin/activate
(.venv)~/deeplearning_flask$ python3 -m pip install pip==24.1.2
(.venv)~/deeplearning_flask$ python3 -m pip install setuptools==71.1.0
(.venv)~/deeplearning_flask$ python3 -m pip install pip==24.2
(.venv)~/deeplearning_flask$ python3 -m pip install setuptools==72.1.0
(.venv)~/deeplearning_flask$ python3 -m pip install -r requirements_dev.txt
(.venv)~/deeplearning_flask$ pre-commit install
```
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Flask==3.0.3
gunicorn==22.0.0
numpy==1.26.4
Pillow==10.4.0
pre-commit==3.7.1
pre-commit==3.8.0
pur==7.3.2
pytest==8.3.2
requests==2.32.3
ruff==0.5.5
ruff==0.5.6
scikit-image==0.24.0
tensorflow==2.17.0

0 comments on commit 186d9e9

Please sign in to comment.