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

Commit def10dc

Browse files
fix(deps): update minor
1 parent 7626e24 commit def10dc

File tree

8 files changed

+79
-77
lines changed

8 files changed

+79
-77
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.11.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.6
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.2.0
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.11.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.11.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.11.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.11.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.6
66
volumes:
77
- ./scripts/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/99-oipie.sh
88
ports:

poetry.lock

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

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ Flask-SQLAlchemy = "2.5.1"
3434
gunicorn = "20.1.0"
3535
psycopg2-binary = "2.9.5"
3636
python = "3.10.6"
37-
PyJWT = "2.5.0"
37+
PyJWT = "2.6.0"
3838
SQLAlchemy = "1.4.40"
39-
typing_extensions = "4.3.0"
39+
typing_extensions = "4.4.0"
4040

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

4949
[build-system]

0 commit comments

Comments
 (0)