From a92257a95b052285adf18159a8a465e02259952c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 30 Oct 2024 20:30:10 +0100 Subject: [PATCH] fix constraints file path --- .pre-commit-config.yaml | 2 +- requirements-dev.in | 1 - requirements-dev.txt | 2 +- tasks.py | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 70ade81..2ff4e72 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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)$ diff --git a/requirements-dev.in b/requirements-dev.in index 693a6d9..4c35409 100644 --- a/requirements-dev.in +++ b/requirements-dev.in @@ -1,4 +1,3 @@ --c constraints.txt pre-commit>=2.7 pytest>=6.0 pytest-cov>=3.0.0 diff --git a/requirements-dev.txt b/requirements-dev.txt index d8bf675..eb2def4 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -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 diff --git a/tasks.py b/tasks.py index 5d2a57a..0980b43 100644 --- a/tasks.py +++ b/tasks.py @@ -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, )