mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 19:46:46 +00:00
This reverts commit 0d9317addfb2c496dcbe32c4491ebe99db304be5.
This commit is contained in:
parent
0d9317addf
commit
13dc14ce6f
11
tasks.py
11
tasks.py
@ -79,9 +79,8 @@ def manage(c, cmd, pty: bool = False):
|
|||||||
cmd: Django command to run.
|
cmd: Django command to run.
|
||||||
pty (bool, optional): Run an interactive session. Defaults to False.
|
pty (bool, optional): Run an interactive session. Defaults to False.
|
||||||
"""
|
"""
|
||||||
c.run('cd "{path}" && {python} manage.py {cmd}'.format(
|
c.run('cd "{path}" && python3 manage.py {cmd}'.format(
|
||||||
path=managePyDir(),
|
path=managePyDir(),
|
||||||
python=sys.executable,
|
|
||||||
cmd=cmd
|
cmd=cmd
|
||||||
), pty=pty)
|
), pty=pty)
|
||||||
|
|
||||||
@ -97,7 +96,7 @@ def plugins(c):
|
|||||||
print(f"Installing plugin packages from '{plugin_file}'")
|
print(f"Installing plugin packages from '{plugin_file}'")
|
||||||
|
|
||||||
# Install the plugins
|
# Install the plugins
|
||||||
c.run(f"{sys.executable} -m pip install --disable-pip-version-check -U -r '{plugin_file}'")
|
c.run(f"pip3 install --disable-pip-version-check -U -r '{plugin_file}'")
|
||||||
|
|
||||||
|
|
||||||
@task(post=[plugins])
|
@task(post=[plugins])
|
||||||
@ -106,7 +105,7 @@ def install(c):
|
|||||||
print("Installing required python packages from 'requirements.txt'")
|
print("Installing required python packages from 'requirements.txt'")
|
||||||
|
|
||||||
# Install required Python packages with PIP
|
# Install required Python packages with PIP
|
||||||
c.run(f'{sys.executable} -m pip install --no-cache-dir --disable-pip-version-check -U -r requirements.txt')
|
c.run('pip3 install --no-cache-dir --disable-pip-version-check -U -r requirements.txt')
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
@ -115,7 +114,7 @@ def setup_dev(c):
|
|||||||
print("Installing required python packages from 'requirements-dev.txt'")
|
print("Installing required python packages from 'requirements-dev.txt'")
|
||||||
|
|
||||||
# Install required Python packages with PIP
|
# Install required Python packages with PIP
|
||||||
c.run(f'{sys.executable} -m pip install -U -r requirements-dev.txt')
|
c.run('pip3 install -U -r requirements-dev.txt')
|
||||||
|
|
||||||
# Install pre-commit hook
|
# Install pre-commit hook
|
||||||
c.run('pre-commit install')
|
c.run('pre-commit install')
|
||||||
@ -172,7 +171,7 @@ def translate_stats(c):
|
|||||||
The file generated from this is needed for the UI.
|
The file generated from this is needed for the UI.
|
||||||
"""
|
"""
|
||||||
path = os.path.join('InvenTree', 'script', 'translation_stats.py')
|
path = os.path.join('InvenTree', 'script', 'translation_stats.py')
|
||||||
c.run(f'{sys.executable} {path}')
|
c.run(f'python3 {path}')
|
||||||
|
|
||||||
|
|
||||||
@task(post=[translate_stats, static])
|
@task(post=[translate_stats, static])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user