From 541bb19e427aabb0068b22b4bd913717fa0889c8 Mon Sep 17 00:00:00 2001 From: Javier Cordero Date: Sun, 14 Jan 2024 13:19:50 +0100 Subject: [PATCH] Update django versions (#78) Co-authored-by: Javier Cordero --- .github/workflows/ci.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9261386..f54537a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,30 +15,30 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest - python-version: '3.6' - django-version: '3.2.13' - - os: ubuntu-latest - python-version: '3.7' - django-version: '3.2.13' - os: ubuntu-latest python-version: '3.8' - django-version: '3.2.13' + django-version: '3.2.23' - os: ubuntu-latest python-version: '3.9' - django-version: '3.2.13' + django-version: '3.2.23' - os: ubuntu-latest python-version: '3.10' - django-version: '3.2.13' + django-version: '3.2.23' - os: ubuntu-latest - python-version: 'pypy3' - django-version: '3.2.13' + python-version: '3.8' + django-version: '4.2.9' - os: ubuntu-latest python-version: '3.9' - django-version: '4.0.4' + django-version: '4.2.9' - os: ubuntu-latest python-version: '3.10' - django-version: '4.0.4' + django-version: '4.2.9' + - os: ubuntu-latest + python-version: '3.11' + django-version: '4.2.9' + - os: ubuntu-latest + python-version: '3.12' + django-version: '4.2.9' services: postgres: image: postgres @@ -54,10 +54,10 @@ jobs: - 5432:5432 steps: - name: 'Set up Python ${{ matrix.python-version }}' - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '${{ matrix.python-version }}' - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: pip install django==${{ matrix.django-version}} - run: pip install psycopg2 - run: pip install gevent