2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-02-02 03:14:56 +00:00

default to 3.14 to val

This commit is contained in:
Matthias Mair
2026-01-20 00:02:56 +01:00
parent c82c0f8001
commit 7a28e46604
5 changed files with 3 additions and 60 deletions

View File

@@ -421,7 +421,7 @@ def run_install(
c, uv: bool, install_file: Path, run_preflight=True, version_check=False
):
"""Run the installation of python packages from a requirements file."""
if version_check:
if False: # version_check:
# Test if there is a version specific requirements file
sys_ver_s = python_version().split('.')
sys_string = f'{sys_ver_s[0]}.{sys_ver_s[1]}'