disable pip version check (it keeps spamming the pipeline)

This commit is contained in:
Jonathan Wren 2021-10-02 17:21:22 -07:00
parent 2825be55df
commit b28f52f3aa

View file

@ -55,7 +55,7 @@ jobs:
if: ${{ matrix.python-version != '3.10-dev' }}
run: |
echo '::group::poetry'
pip install poetry
pip --disable-pip-version-check install poetry
poetry config --local virtualenvs.in-project true
echo '::endgroup::'
@ -70,7 +70,7 @@ jobs:
if: ${{ matrix.python-version == '3.10-dev' }}
run: |
echo '::group::poetry'
pip install poetry==1.2.0a2
pip --disable-pip-version-check install poetry==1.2.0a2
poetry config --local virtualenvs.in-project true
echo '::endgroup::'