From 9203e9cb1b8bda5ad57aacc655e49747401aff43 Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Tue, 3 Jan 2023 14:33:06 +0100 Subject: [PATCH] Use latest pip in tox environments Apparently, pip<21.3 behaves differently on Python 3.7 and 3.9. The package `crispy-forms-foundation` does not get its package data installed (i.e. its Django templates directory) under Python 3.7, but it does under Python 3.9. Since the latest pip appears to work fine for NAV now, we can safely update. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c6f7c55890..ffe9a02f98 100644 --- a/tox.ini +++ b/tox.ini @@ -25,7 +25,7 @@ python = # Baseline test environment deps = pip-tools - pip<21.3 + pip setenv = LC_ALL=C.UTF-8 LANG=C.UTF-8