1
0
mirror of https://github.com/home-assistant/core synced 2024-07-08 20:17:01 +00:00

Update pip version range to 22.3 (#75572)

This commit is contained in:
Marc Mueller 2022-07-24 21:11:30 +02:00 committed by GitHub
parent e18819c678
commit c0e6852077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -517,7 +517,7 @@ jobs:
python -m venv venv
. venv/bin/activate
python --version
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<22.2" setuptools wheel
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<22.3" setuptools wheel
pip install --cache-dir=$PIP_CACHE -r requirements_all.txt --use-deprecated=legacy-resolver
pip install --cache-dir=$PIP_CACHE -r requirements_test.txt --use-deprecated=legacy-resolver
pip install -e .

View File

@ -26,7 +26,7 @@ lru-dict==1.1.8
orjson==3.7.8
paho-mqtt==1.6.1
pillow==9.2.0
pip>=21.0,<22.2
pip>=21.0,<22.3
pyserial==3.5
python-slugify==4.0.1
pyudev==0.23.2

View File

@ -44,7 +44,7 @@ dependencies = [
# PyJWT has loose dependency. We want the latest one.
"cryptography==36.0.2",
"orjson==3.7.8",
"pip>=21.0,<22.2",
"pip>=21.0,<22.3",
"python-slugify==4.0.1",
"pyyaml==6.0",
"requests==2.28.1",

View File

@ -18,7 +18,7 @@ lru-dict==1.1.8
PyJWT==2.4.0
cryptography==36.0.2
orjson==3.7.8
pip>=21.0,<22.2
pip>=21.0,<22.3
python-slugify==4.0.1
pyyaml==6.0
requests==2.28.1

View File

@ -7,7 +7,7 @@ isolated_build = True
[testenv]
basepython = {env:PYTHON3_PATH:python3}
# pip version duplicated in homeassistant/package_constraints.txt
pip_version = pip>=21.0,<22.2
pip_version = pip>=21.0,<22.3
install_command = python -m pip install --use-deprecated legacy-resolver {opts} {packages}
commands =
{envpython} -X dev -m pytest --timeout=9 --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar {posargs}