diff --git a/.circleci/config.yml b/.circleci/config.yml
index a9aba29..f2e42e9 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -20,7 +20,7 @@ jobs:
- run:
name: Run tests
- command: tox -e 'py37-dj{20,21,22}'
+ command: tox -e 'py37-dj{20,21,22,30}'
environment:
DATABASE_URL: 'postgres://localizedfields:localizedfields@localhost:5432/localizedfields'
@@ -47,7 +47,7 @@ jobs:
- run:
name: Run tests
- command: tox -e 'py38-dj{20,21,22}'
+ command: tox -e 'py38-dj{20,21,22,30}'
environment:
DATABASE_URL: 'postgres://localizedfields:localizedfields@localhost:5432/localizedfields'
diff --git a/README.md b/README.md
index b97614b..b8d02a2 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
| :white_check_mark: | **Tests** | [](https://circleci.com/gh/SectorLabs/django-localized-fields/tree/master) |
| :memo: | **License** | [](http://doge.mit-license.org) |
| :package: | **PyPi** | [](https://pypi.python.org/pypi/django-localized-fields) |
-|
| **Django Versions** | 2.0, 2.1, 2.2 |
+|
| **Django Versions** | 2.0, 2.1, 2.2, 3.0 |
|
| **Python Versions** | 3.7, 3.8 |
| :book: | **Documentation** | [Read The Docs](https://django-localized-fields.readthedocs.io) |
| :warning: | **Upgrade** | [Upgrade fom v5.x](https://django-localized-fields.readthedocs.io/en/latest/releases.html#v6-0)
diff --git a/tox.ini b/tox.ini
index 865a965..37c221d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,11 +1,12 @@
[tox]
-envlist = py37-dj{20,21,22}, py38-dj{20,21,22}
+envlist = py37-dj{20,21,22,30}, py38-dj{20,21,22,30}
[testenv]
deps =
dj20: Django>=2.0,<2.1
dj21: Django>=2.1,<2.2
dj22: Django>=2.2,<2.3
+ dj30: Django>=3.0a1,<3.1
-rrequirements/test.txt
setenv =
DJANGO_SETTINGS_MODULE=settings