From 37f966e55461ee7269f6af81e5ca4efcab22b52e Mon Sep 17 00:00:00 2001 From: alonisser Date: Fri, 1 Nov 2024 15:23:45 +0200 Subject: [PATCH] update depdendencies --- .github/workflows/python-test.yaml | 4 ++-- infra/resources.bicep | 2 +- requirements.txt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-test.yaml b/.github/workflows/python-test.yaml index 3b056264..dad43574 100644 --- a/.github/workflows/python-test.yaml +++ b/.github/workflows/python-test.yaml @@ -14,10 +14,10 @@ jobs: fail-fast: false matrix: os: ["ubuntu-20.04"] - python_version: ["3.10", "3.11"] + python_version: ["3.10", "3.11", "3.12"] services: postgres: - image: postgres:12 + image: postgres:16 env: POSTGRES_PASSWORD: postgres ports: diff --git a/infra/resources.bicep b/infra/resources.bicep index 816a7cd5..9a0db84e 100644 --- a/infra/resources.bicep +++ b/infra/resources.bicep @@ -310,7 +310,7 @@ resource postgresServer 'Microsoft.DBforPostgreSQL/flexibleServers@2022-01-20-pr tier: 'Burstable' } properties: { - version: '12' + version: '16' administratorLogin: 'postgresadmin' administratorLoginPassword: databasePassword storage: { diff --git a/requirements.txt b/requirements.txt index 74f5cf54..4e907f38 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -Django==5.0.6 -psycopg2-binary==2.9.9 +Django==5.1.2 +psycopg2-binary==2.9.10 python-dotenv==1.0.1 whitenoise==6.6.0 django-redis==5.4.0