'[tox] skipsdist' behaves differently in tox 4 [1]. In addition, setting
'[testenv] basepython' with '[tox] ignore_basepython_conflict' has been
the cause of a few tox 4 bugs (most since fixed, thankfully) and might
be deprecated [2]. Remove it since we don't need it in any of our
environments.
[1] https://github.com/tox-dev/tox/issues/2730
[2] https://github.com/tox-dev/tox/issues/2846
Conflicts:
tox.ini
NOTE(stephenfin): Conflicts are due to lack of support for Django 4.1.
Signed-off-by: Stephen Finucane <stephen@that.guru>
(cherry picked from commit
a03a0a5ea8e4a3299c02f318179001a8092a728c)
[tox]
minversion = 3.2
envlist = pep8,docs,py{37,38,39}-django32,py{38,39,310}-django{40}
-skipsdist = true
-ignore_basepython_conflict = true
[testenv]
-basepython = python3
+skip_install = true
deps =
-r{toxinidir}/requirements-test.txt
django32: django~=3.2.0