mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-14 11:05:41 +00:00
Merge remote-tracking branch 'inventree/master' into docupdates
# Conflicts: # .github/workflows/qc_checks.yaml # InvenTree/InvenTree/version.py # InvenTree/common/notifications.py # InvenTree/label/api.py # InvenTree/plugin/base/label/label.py # InvenTree/plugin/base/label/mixins.py # InvenTree/plugin/base/label/test_label_mixin.py # InvenTree/plugin/registry.py
This commit is contained in:
4
tasks.py
4
tasks.py
@ -66,7 +66,7 @@ def plugins(c):
|
||||
print(f"Installing plugin packages from '{plugin_file}'")
|
||||
|
||||
# Install the plugins
|
||||
c.run(f"pip3 install -U -r '{plugin_file}'")
|
||||
c.run(f"pip3 install --disable-pip-version-check -U -r '{plugin_file}'")
|
||||
|
||||
|
||||
@task(post=[plugins])
|
||||
@ -75,7 +75,7 @@ def install(c):
|
||||
print("Installing required python packages from 'requirements.txt'")
|
||||
|
||||
# Install required Python packages with PIP
|
||||
c.run('pip3 install -U -r requirements.txt')
|
||||
c.run('pip3 install --no-cache-dir --disable-pip-version-check -U -r requirements.txt')
|
||||
|
||||
|
||||
@task
|
||||
|
Reference in New Issue
Block a user