There was an error while loading. Please reload this page.
1 parent 7dee37e commit d965040Copy full SHA for d965040
1 file changed
Makefile
@@ -4,6 +4,10 @@ SHELL=env bash
4
5
PYTHON?=python3
6
RELEASE_VER?=HEAD
7
+# Pin Poetry so the bootstrap doesn't pull a fresh release whose transitive
8
+# deps (e.g. virtualenv) are then filtered out by solver.min-release-age=7
9
+# during the project's plugin resolve.
10
+POETRY_VERSION?=2.4.0
11
ifdef VIRTUAL_ENV
12
VENV=${VIRTUAL_ENV}
13
else
@@ -16,7 +20,7 @@ ifdef POETRY
16
20
17
21
VENV_BIN="${VENV}/bin"
18
22
19
- START_PKGS=pip wheel poetry
23
+ START_PKGS=pip wheel poetry==${POETRY_VERSION}
24
POETRY="${VENV_BIN}/poetry"
25
endif
26
PIP?="${VENV_BIN}/pip"
0 commit comments