remove temporary flag for using the new pip resolver which is now the default

This commit is contained in:
Axel Kohlmeyer
2020-12-01 19:04:43 -05:00
parent 5ea9d97024
commit 6ac481409a

View File

@ -229,7 +229,7 @@ $(VENV):
$(VIRTUALENV) -p $(PYTHON) $(VENV); \
. $(VENV)/bin/activate; \
pip install --upgrade pip; \
pip install --use-feature=2020-resolver -r $(BUILDDIR)/utils/requirements.txt; \
pip install -r $(BUILDDIR)/utils/requirements.txt; \
deactivate;\
)