Skip to content

Commit

Permalink
Add workaround to prevent install failure with pip > 21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gentooboontoo committed Oct 12, 2021
1 parent b46f00b commit d413323
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion base.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ PYTHON ?= python
VENV ?= $(PWD)/.venv
PYTHON_BINDIR ?= $(VENV)/bin
PYTHON_SRCDIR ?= lib
PYTHON_PKG_TOOLS ?= pip pip-tools setuptools wheel
# FIXME
# pip-tools does not work with pip-tools >= 21.3
# See https://github.com/jazzband/pip-tools/issues/1503
# To be removed once fixed upstream
PYTHON_PKG_TOOLS ?= "pip<21.3" pip-tools setuptools wheel
### Commands (from `PYTHON_BINDIR` via `PATH` environment variable)
FLASK ?= flask
PIP ?= pip
Expand Down

0 comments on commit d413323

Please sign in to comment.