Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 7d08d54

Browse files
fix(deps): update minor
1 parent 82f4b67 commit 7d08d54

File tree

8 files changed

+171
-184
lines changed

8 files changed

+171
-184
lines changed

.github/workflows/pull_request.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
test:
2020
needs: skip-draft
2121
runs-on: ubuntu-latest
22-
container: "python:3.10.6-slim"
22+
container: "python:3.12.1-slim"
2323
services:
2424
# Label used to access the service container
2525
postgres:
2626
# Docker Hub image
27-
image: postgres:14.5
27+
image: postgres:14.10
2828
# Provide the password for postgres
2929
env:
3030
POSTGRES_DB: oipie_tests
@@ -70,7 +70,7 @@ jobs:
7070
- name: Set up Docker Buildx
7171
uses: docker/setup-buildx-action@v2
7272
- name: Build and push docker image
73-
uses: docker/build-push-action@v3.1.1
73+
uses: docker/build-push-action@v3.3.1
7474
with:
7575
context: .
7676
file: ./Dockerfile

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.6
1+
3.12.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM python:3.10.6-slim
3+
FROM python:3.12.1-slim
44

55
WORKDIR /python-docker
66

Dockerfile.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM python:3.10.6-slim
3+
FROM python:3.12.1-slim
44

55
WORKDIR /python-docker
66

Dockerfile.web

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM python:3.10.6-slim
3+
FROM python:3.12.1-slim
44

55
WORKDIR /python-docker
66

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.7"
22
services:
33
postgres:
44
container_name: oipie
5-
image: postgres:14.5
5+
image: postgres:14.10
66
volumes:
77
- ./scripts/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/99-oipie.sh
88
ports:

poetry.lock

Lines changed: 155 additions & 168 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@ license = "MIT"
2727

2828
[tool.poetry.dependencies]
2929
argon2-cffi = "21.3.0"
30-
dependency-injector = "4.40.0"
31-
Flask = "2.2.5"
30+
dependency-injector = "4.41.0"
31+
Flask = "2.3.3"
3232
Flask-Migrate = "3.1.0"
3333
Flask-SQLAlchemy = "2.5.1"
3434
gunicorn = "20.1.0"
3535
psycopg2-binary = "2.9.5"
36-
python = "3.10.6"
37-
PyJWT = "2.5.0"
36+
python = "3.12.1"
37+
PyJWT = "2.8.0"
3838
SQLAlchemy = "1.4.40"
39-
typing_extensions = "4.3.0"
39+
typing_extensions = "4.8.0"
4040

4141
[tool.poetry.group.dev.dependencies]
42-
black = "22.8.0"
43-
pylint = "2.15.5"
42+
black = "22.12.0"
43+
pylint = "2.17.7"
4444
pylint-flask = "0.6.0"
4545
pylint-flask-sqlalchemy = "0.2.0"
46-
pytest = "7.1.2"
46+
pytest = "7.4.3"
4747
python-dotenv = "0.21.0"
4848

4949
[build-system]

0 commit comments

Comments
 (0)