Compare commits

..

2 Commits
0.7.6 ... 0.7.7

Author SHA1 Message Date
Oliver
216e09664b Increment version number to 0.7.7 (#3403) 2022-07-26 12:01:52 +10:00
Oliver
a0813dd3c1 Make sure PIP is upgraded to latest version (#3402)
Co-authored-by: Matthias Mair <code@mjmair.com>
2022-07-26 12:01:43 +10:00
2 changed files with 5 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import common.models
from InvenTree.api_version import INVENTREE_API_VERSION
# InvenTree software version
INVENTREE_SW_VERSION = "0.7.6"
INVENTREE_SW_VERSION = "0.7.7"
def inventreeInstanceName():

View File

@@ -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"(?<![^\%][^\(][)][a-z])"+ # that is not a specially formatted variable with singles
r"[a-zA-Z0-9]{1}" + # match any single letter and number
r"(?![^{\(\<]*[}\)\>])" + # that is not inside curly brackets, brackets or a tag
r"(?<![^\%][^\(][)][a-z])" + # that is not a specially formatted variable with singles
r"(?![^\\][\n])" # that is not a newline
)
last_string = ''