diff options
author | Erik Johnston <erik@matrix.org> | 2022-09-01 16:11:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 14:11:44 +0000 |
commit | dcfb006f8a95366f9e388b313615039462fef0f9 (patch) | |
tree | 05e4f7d4a6f9d1f44517f52c1db24388ba30a4f1 /debian/build_virtualenv | |
parent | Add some logging to help track down #13444 (#13679) (diff) | |
download | synapse-dcfb006f8a95366f9e388b313615039462fef0f9.tar.xz |
Use poetry 1.2.0 rather than prerelease for deb packages (#13695)
Diffstat (limited to 'debian/build_virtualenv')
-rwxr-xr-x | debian/build_virtualenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/build_virtualenv b/debian/build_virtualenv index f1ec609163..ed916ac97a 100755 --- a/debian/build_virtualenv +++ b/debian/build_virtualenv @@ -36,7 +36,7 @@ TEMP_VENV="$(mktemp -d)" python3 -m venv "$TEMP_VENV" source "$TEMP_VENV/bin/activate" pip install -U pip -pip install poetry==1.2.0b1 +pip install poetry==1.2.0 poetry export \ --extras all \ --extras test \ |