Skip to content

Commit

Permalink
upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alvertogit committed May 5, 2024
1 parent 1787c5a commit 2414ccd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python: [ "3.10" ]
python: [ "3.12" ]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-bullseye
FROM python:3.12-slim-bookworm
ENV PYTHONUNBUFFERED 1
RUN apt-get update \
&& apt-get install -y make \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The goal is to deploy on [Flask] a [Deep Learning] model as a microservice. The

The code has been tested using:

- [Python] (3.10): an interpreted high-level programming language for general-purpose programming.
- [Python] (3.12): an interpreted high-level programming language for general-purpose programming.
- [Jupyter Lab] (4.1): a web-based interactive development environment for [Jupyter Notebooks], code and data.
- [Flask] (3.0): a microframework for [Python] based on Werkzeug, Jinja 2 and good intentions.
- [Gunicorn] (22.0): a [Python] [WSGI] HTTP Server for UNIX.
Expand Down Expand Up @@ -158,7 +158,7 @@ It is possible to execute tests of [Flask] microservice created with [pytest] fr
~/app# make test
...
============================= test session starts ==============================
platform linux -- Python 3.10.14, pytest-8.1.2, pluggy-1.5.0
platform linux -- Python 3.12.3, pytest-8.2.0, pluggy-1.5.0
rootdir: /app/tests
collected 2 items

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
extend-include = ["*.ipynb"]

line-length = 100
target-version = "py310"
target-version = "py312"

[tool.ruff.lint]
select = [
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Flask==3.0.3
gunicorn==22.0.0
numpy==1.26.4
Pillow==10.3.0
pytest==8.1.2
pytest==8.2.0
requests==2.31.0
ruff==0.4.2
scikit-image==0.23.2
Expand Down

0 comments on commit 2414ccd

Please sign in to comment.