makefile: fix github CI by pinning pipenv (which autobroke) to a specific version
This commit is contained in:
parent
3ea9816a15
commit
8cfeac11f4
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -772,7 +772,7 @@ build/venv/config2.stamp: Pipfile.lock Pipfile
|
||||||
@mkdir -p build
|
@mkdir -p build
|
||||||
[ ! -f build/venv/config.stamp ] || rm -rf build/venv
|
[ ! -f build/venv/config.stamp ] || rm -rf build/venv
|
||||||
[ -d build/venv ] || python3 -m venv build/venv
|
[ -d build/venv ] || python3 -m venv build/venv
|
||||||
. $(VENV) ; pip install pipenv
|
. $(VENV) ; pip install pipenv==2023.8.28
|
||||||
. $(VENV) ; pipenv install
|
. $(VENV) ; pipenv install
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue