Install the packaging module on Windows

This commit is contained in:
Jordan Williams 2023-12-05 09:10:33 -06:00
parent 6ef967a0f9
commit f341a37fb9
No known key found for this signature in database
GPG Key ID: 9FB42B0E7F657D8C
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ for %%x in (%*) do (
set args=%args:~1%
:: FIXME: make warnings fatal
pip3 install --upgrade --user meson==1.2.3 || goto :error
pip3 install --upgrade --user meson==1.2.3 packaging==23.2 || goto :error
meson setup %args% _build || goto :error
python .gitlab-ci/check-missing-install-tag.py _build || goto :error
meson compile -C _build || goto :error

View File

@ -26,7 +26,7 @@ CCACHE_BASEDIR="$(pwd)"
CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
export CCACHE_BASEDIR CCACHE_DIR
pip3 install --upgrade --user meson==1.2.3
pip3 install --upgrade --user meson==1.2.3 packaging==23.2
PATH="$(cygpath "$USERPROFILE")/.local/bin:$HOME/.local/bin:$PATH"
DIR="$(pwd)"