From cd803daa4cbfa15f8cb51fb5f10a25dc5c3f8b10 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 26 Jul 2022 03:21:25 +0200 Subject: [PATCH] Make sure PIP is upgraded to latest version --- tasks.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tasks.py b/tasks.py index a5d1ac0e5b63..8adc5b231456 100644 --- a/tasks.py +++ b/tasks.py @@ -94,6 +94,7 @@ def install(c): print("Installing required python packages from 'requirements.txt'") # Install required Python packages with PIP + c.run('pip3 install --upgrade pip') c.run('pip3 install -U -r requirements.txt') @@ -554,9 +555,9 @@ def test_translations(c): # complie regex reg = re.compile( - r"[a-zA-Z0-9]{1}"+ # match any single letter and number - r"(?![^{\(\<]*[}\)\>])"+ # that is not inside curly brackets, brackets or a tag - r"(?])" + # that is not inside curly brackets, brackets or a tag + r"(?