Unverified Commit f0b7839a authored by Antonio Morillas's avatar Antonio Morillas Committed by GitHub
Browse files

Update for Django 4.1, 4.2 (#87)

Update for Django 4.1, 4.2
parent eb97e44a
......@@ -10,7 +10,7 @@ on:
jobs:
test:
name: "Python ${{ matrix.python }} Django ${{ matrix.django }}"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
# max-parallel: 8 # default is max available
fail-fast: false
......@@ -18,15 +18,21 @@ jobs:
include:
# Django 2.2
- django: "2.2"
python: "3.6.14"
python: "3.6"
# Django 3.1
- django: "3.1"
python: "3.6.14"
python: "3.6"
# Django 3.2
- django: "3.2"
python: "3.6.14"
python: "3.6"
# Django 4.0
- django: "4.0b1"
- django: "4.0"
python: "3.10"
# Django 4.1
- django: "4.1"
python: "3.10"
# Django 4.2
- django: "4.2"
python: "3.10"
steps:
......@@ -34,10 +40,10 @@ jobs:
run: sudo apt-get install -y gettext
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
......
Changelog
=========
Changes in 3.1 (2023-05-12)
---------------------------
* Fixed compatibility for Django 4.1, 4.2
Version 3.0 (2021-11-16)
------------------------
......
# following PEP 440
__version__ = "3.0"
__version__ = "3.1"
[tox]
envlist=
py38-django{22,31,32},
py38-django{22,31,32,41,42},
py38-django-dev,
coverage,
......@@ -16,6 +16,8 @@ deps =
django30: Django~=3.0
django31: Django~=3.1
django32: Django~=3.2
django41: Django~=4.1
django42: Django~=4.2
django-dev: https://github.com/django/django/tarball/main
commands=
python runtests.py
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment