mirror of
https://github.com/django-components/django-components.git
synced 2025-09-18 11:49:44 +00:00
Add support for Django 3.2 (no code changes).
This commit is contained in:
parent
d7b63b0a1a
commit
977d9a214a
3 changed files with 20 additions and 21 deletions
|
@ -110,10 +110,10 @@ Django-components supports all officially supported versions of Django and Pytho
|
|||
|
||||
| Python version | Django version |
|
||||
|----------------|--------------------------|
|
||||
| 3.6 | 2.2, 3.0, 3.1 |
|
||||
| 3.7 | 2.2, 3.0, 3.1 |
|
||||
| 3.8 | 2.2, 3.0, 3.1 |
|
||||
| 3.9 | 2.2, 3.0, 3.1 |
|
||||
| 3.6 | 2.2, 3.0, 3.1, 3.2 |
|
||||
| 3.7 | 2.2, 3.0, 3.1, 3.2 |
|
||||
| 3.8 | 2.2, 3.0, 3.1, 3.2 |
|
||||
| 3.9 | 2.2, 3.0, 3.1, 3.2 |
|
||||
|
||||
# Create your first component
|
||||
|
||||
|
|
1
setup.py
1
setup.py
|
@ -30,5 +30,6 @@ setup(
|
|||
"Framework :: Django :: 2.2",
|
||||
"Framework :: Django :: 3.0",
|
||||
"Framework :: Django :: 3.1",
|
||||
"Framework :: Django :: 3.2",
|
||||
],
|
||||
)
|
||||
|
|
32
tox.ini
32
tox.ini
|
@ -1,27 +1,25 @@
|
|||
[tox]
|
||||
envlist =
|
||||
py36-django{22,30,31}
|
||||
py37-django{22,30,31}
|
||||
py38-django{22,30,31}
|
||||
py39-django{22,30,31}
|
||||
flake8
|
||||
isort
|
||||
py{36,37,38,39}-django{22,30,31,32}
|
||||
flake8
|
||||
isort
|
||||
|
||||
[gh-actions]
|
||||
3.6 = py36-django{22,30,31}
|
||||
3.7 = py37-django{22,30,31}
|
||||
3.8 = py38-django{22,30,31}
|
||||
3.9 = py39-django{22,30,31}, flake8, isort
|
||||
3.6 = py36-django{22,30,31,32}
|
||||
3.7 = py37-django{22,30,31,32}
|
||||
3.8 = py38-django{22,30,31,32}
|
||||
3.9 = py39-django{22,30,31,32}, flake8, isort
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
pytest
|
||||
pytest-xdist
|
||||
django22: Django>=2.2,<2.3
|
||||
django30: Django>=3.0,<3.1
|
||||
django31: Django>=3.1,<3.2
|
||||
flake8
|
||||
isort
|
||||
pytest
|
||||
pytest-xdist
|
||||
django22: Django>=2.2,<2.3
|
||||
django30: Django>=3.0,<3.1
|
||||
django31: Django>=3.1,<3.2
|
||||
django32: Django>=3.2,<3.3
|
||||
flake8
|
||||
isort
|
||||
commands = py.test {posargs}
|
||||
|
||||
[testenv:flake8]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue