diff --git a/.circleci/config.yml b/.circleci/config.yml index 4825c266..38ed7652 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,12 +18,14 @@ workflows: - test-3.8-31 - test-3.8-32 - test-3.8-40 + - test-3.8-41 - test-3.9-22 - test-3.9-30 - test-3.9-31 - test-3.9-32 - test-3.9-40 + - test-3.9-41 - done: requires: @@ -42,12 +44,14 @@ workflows: - test-3.8-31 - test-3.8-32 - test-3.8-40 + - test-3.8-41 - test-3.9-22 - test-3.9-30 - test-3.9-31 - test-3.9-32 - test-3.9-40 + - test-3.9-41 jobs: base: &test-template @@ -178,6 +182,12 @@ jobs: - image: circleci/python:3.8-buster-node environment: DJANGO_VERSION: "40" + test-3.8-41: + <<: *test-template + docker: + - image: circleci/python:3.8-buster-node + environment: + DJANGO_VERSION: "41" test-3.9-22: <<: *test-template @@ -209,6 +219,12 @@ jobs: - image: circleci/python:3.9-buster-node environment: DJANGO_VERSION: "40" + test-3.9-41: + <<: *test-template + docker: + - image: circleci/python:3.9-buster-node + environment: + DJANGO_VERSION: "41" done: docker: diff --git a/setup.py b/setup.py index 7fffbc27..6f6b55d2 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ def rel(*parts): 'Framework :: Django :: 3.1', 'Framework :: Django :: 3.2', 'Framework :: Django :: 4.0', + 'Framework :: Django :: 4.1', 'Environment :: Web Environment', 'License :: OSI Approved :: MIT License', ], diff --git a/tests/requirements/django41.txt b/tests/requirements/django41.txt new file mode 100644 index 00000000..4041b77b --- /dev/null +++ b/tests/requirements/django41.txt @@ -0,0 +1 @@ +django>=4.1,<4.2