mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 06:13:55 +01:00
remove unused parameter
This commit is contained in:
parent
545170ab14
commit
9f696928f2
2 changed files with 5 additions and 5 deletions
|
@ -63,17 +63,17 @@ repos:
|
|||
hooks:
|
||||
- id: pyproject-fmt
|
||||
- repo: https://github.com/jazzband/pip-tools
|
||||
rev: 6.14.0
|
||||
rev: 7.0.0
|
||||
hooks:
|
||||
- id: pip-compile
|
||||
name: pip-compile requirements.txt
|
||||
args: [-q, --allow-unsafe, --resolver=backtracking, requirements.in]
|
||||
args: [-q, --allow-unsafe, requirements.in]
|
||||
files: ^requirements\.(in|txt)$
|
||||
- id: pip-compile
|
||||
name: pip-compile constraints.txt
|
||||
args: [-q, --allow-unsafe, --resolver=backtracking, --strip-extras, --output-file=constraints.txt, requirements.in]
|
||||
args: [-q, --allow-unsafe, --strip-extras, --output-file=constraints.txt, requirements.in]
|
||||
files: ^requirements\.in|constraints\.txt$
|
||||
- id: pip-compile
|
||||
name: pip-compile requirements-dev.txt
|
||||
args: [-q, --allow-unsafe, --resolver=backtracking, requirements-dev.in]
|
||||
args: [-q, --allow-unsafe, requirements-dev.in]
|
||||
files: ^requirements-dev\.(in|txt)$
|
||||
|
|
2
tasks.py
2
tasks.py
|
@ -16,7 +16,7 @@ def update_dependencies(ctx: Context, *, sync: bool = True):
|
|||
|
||||
@task
|
||||
def compile_dependencies(ctx: Context, *, update: bool = False, sync: bool = False):
|
||||
common_args = "-q --allow-unsafe --resolver=backtracking"
|
||||
common_args = "-q --allow-unsafe"
|
||||
if update:
|
||||
common_args += " --upgrade"
|
||||
with ctx.cd(BASE_DIR):
|
||||
|
|
Loading…
Reference in a new issue