From dcfcdb07aeb58ec073439605f54c54e492753ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rolf=20H=C3=A5vard=20Blindheim?= Date: Sat, 20 May 2023 18:09:54 +0200 Subject: [PATCH 1/2] fix: update tox test command --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 69fc63d..6c2dc4c 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ envlist = [testenv] commands = - coverage run {toxinidir}/setup.py test + coverage run {toxinidir}/tests/run_tests.py deps = python-dateutil geopy==2.0.0 From d32436db445817e81439047329303ba506c66405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Clgen=20Sar=C4=B1kavak?= Date: Thu, 18 Dec 2025 12:04:24 +0300 Subject: [PATCH 2/2] Add Django 4.1 and 4.2 to tox --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6c2dc4c..e3785e3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = docs - py{38,39,310,py}-django{3.1,3.2,4.0}-es{1.x,2.x} + py{38,39,310,py}-django{3.1,3.2,4.0,4.1,4.2}-es{1.x,2.x} [testenv] @@ -15,6 +15,8 @@ deps = django3.1: Django>=3.1,<3.2 django3.2: Django>=3.2,<3.3 django4.0: Django>=4.0,<4.1 + django4.1: Django>=4.1,<4.2 + django4.2: Django>=4.2,<4.3 es1.x: elasticsearch>=1,<2 es2.x: elasticsearch>=2,<3 # es5.x: elasticsearch>=5,<6