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 Dec 19, 2022
1 parent 7626e24 commit 6d165a5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 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.11.1-slim"
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres:14.5
image: postgres:14.6
# 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.2.0
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.11.1
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.11.1-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.11.1-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.11.1-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.6
volumes:
- ./scripts/create-multiple-postgresql-databases.sh:/docker-entrypoint-initdb.d/99-oipie.sh
ports:
Expand Down
10 changes: 5 additions & 5 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"
dependency-injector = "4.41.0"
Flask = "2.2.2"
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"
PyJWT = "2.6.0"
SQLAlchemy = "1.4.40"
typing_extensions = "4.3.0"
typing_extensions = "4.4.0"

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

[build-system]
Expand Down

0 comments on commit 6d165a5

Please sign in to comment.