From 2247aead549a17fd9cc29d5bcbd46b55500d2011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Molinero=20Fern=C3=A1ndez?= Date: Thu, 8 Feb 2024 00:30:08 +0100 Subject: [PATCH] Update pip-tools --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0aee46e..f6a12a2 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ all: lint test build .PHONY: venv venv: @[ -e ./.venv/ ] || $(PYTHON_SYS) -m venv ./.venv/ - @[ -e ./.venv/bin/pip-compile ] || $(PYTHON_ENV) -m pip install 'pip-tools <= 7' + @[ -e ./.venv/bin/pip-compile ] || $(PYTHON_ENV) -m pip install 'pip-tools >= 7, < 8' .PHONY: format format: deps venv @@ -44,10 +44,10 @@ deps: venv lock: ./requirements.txt ./requirements-dev.txt ./requirements.txt: ./requirements.in venv - @$(PYTHON_ENV) -m piptools compile --output-file $@ $< + @$(PYTHON_ENV) -m piptools compile --strip-extras --output-file $@ $< ./requirements-dev.txt: ./requirements-dev.in ./requirements.txt venv - @$(PYTHON_ENV) -m piptools compile --output-file $@ $< + @$(PYTHON_ENV) -m piptools compile --strip-extras --output-file $@ $< .PHONY: docker docker: