fix constraints file path

This commit is contained in:
Gabriel Augendre 2024-10-30 20:33:59 +01:00 committed by crocmagnon-pr[bot]
parent 7e4a6da750
commit d703cd0032
4 changed files with 3 additions and 4 deletions

View file

@ -75,5 +75,5 @@ repos:
files: ^requirements\.in|constraints\.txt$
- id: pip-compile
name: pip-compile requirements-dev.txt
args: [-q, --allow-unsafe, --no-strip-extras, requirements-dev.in]
args: [-q, --allow-unsafe, --no-strip-extras, --constraint=constraints.txt, requirements-dev.in]
files: ^requirements-dev\.(in|txt)$

View file

@ -1,4 +1,3 @@
-c constraints.txt
django-debug-toolbar>=3.2
pytest>=6.0
pytest-cov>=3.0.0

View file

@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --allow-unsafe requirements-dev.in
# pip-compile --allow-unsafe --constraint=constraints.txt requirements-dev.in
#
asgiref==3.8.1
# via

View file

@ -31,7 +31,7 @@ def compile_dependencies(ctx: Context, *, update: bool = False, sync: bool = Fal
echo=True,
)
ctx.run(
f"pip-compile {common_args} --no-strip-extras requirements-dev.in",
f"pip-compile {common_args} --no-strip-extras -c constraints.txt requirements-dev.in",
pty=True,
echo=True,
)