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

Commit

Permalink
fix(deps): update minor
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 3, 2023
1 parent 82f4b67 commit 1dc4297
Show file tree
Hide file tree
Showing 8 changed files with 161 additions and 184 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
test:
needs: skip-draft
runs-on: ubuntu-latest
container: "python:3.10.6-slim"
container: "python:3.12.0-slim"
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres:14.5
image: postgres:14.9
# Provide the password for postgres
env:
POSTGRES_DB: oipie_tests
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push docker image
uses: docker/build-push-action@v3.1.1
uses: docker/build-push-action@v3.3.1
with:
context: .
file: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.6
3.12.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM python:3.10.6-slim
FROM python:3.12.0-slim

WORKDIR /python-docker

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM python:3.10.6-slim
FROM python:3.12.0-slim

WORKDIR /python-docker

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.web
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM python:3.10.6-slim
FROM python:3.12.0-slim

WORKDIR /python-docker

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"
services:
postgres:
container_name: oipie
image: postgres:14.5
image: postgres:14.9
volumes:
- ./scripts/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/99-oipie.sh
ports:
Expand Down
313 changes: 145 additions & 168 deletions poetry.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ license = "MIT"

[tool.poetry.dependencies]
argon2-cffi = "21.3.0"
dependency-injector = "4.40.0"
Flask = "2.2.5"
dependency-injector = "4.41.0"
Flask = "2.3.3"
Flask-Migrate = "3.1.0"
Flask-SQLAlchemy = "2.5.1"
gunicorn = "20.1.0"
psycopg2-binary = "2.9.5"
python = "3.10.6"
PyJWT = "2.5.0"
python = "3.11.5"
PyJWT = "2.8.0"
SQLAlchemy = "1.4.40"
typing_extensions = "4.3.0"
typing_extensions = "4.8.0"

[tool.poetry.group.dev.dependencies]
black = "22.8.0"
pylint = "2.15.5"
black = "22.12.0"
pylint = "2.17.7"
pylint-flask = "0.6.0"
pylint-flask-sqlalchemy = "0.2.0"
pytest = "7.1.2"
pytest = "7.4.2"
python-dotenv = "0.21.0"

[build-system]
Expand Down

0 comments on commit 1dc4297

Please sign in to comment.