Update pip constraint to 22.4 (#80383)

This commit is contained in:
Marc Mueller 2022-10-16 12:01:11 +02:00 committed by GitHub
parent e1cf261379
commit 8d4c32e106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View file

@ -20,8 +20,8 @@ on:
type: boolean
env:
CACHE_VERSION: 2
PIP_CACHE_VERSION: 2
CACHE_VERSION: 3
PIP_CACHE_VERSION: 3
HA_SHORT_VERSION: 2022.11
DEFAULT_PYTHON: 3.9
ALL_PYTHON_VERSIONS: "['3.9', '3.10']"
@ -546,7 +546,7 @@ jobs:
python -m venv venv
. venv/bin/activate
python --version
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<22.3" setuptools wheel
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<22.4" 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

@ -29,7 +29,7 @@ lru-dict==1.1.8
orjson==3.7.11
paho-mqtt==1.6.1
pillow==9.2.0
pip>=21.0,<22.3
pip>=21.0,<22.4
psutil-home-assistant==0.0.1
pyserial==3.5
python-slugify==4.0.1

View file

@ -44,7 +44,7 @@ dependencies = [
# PyJWT has loose dependency. We want the latest one.
"cryptography==38.0.1",
"orjson==3.7.11",
"pip>=21.0,<22.3",
"pip>=21.0,<22.4",
"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.5.0
cryptography==38.0.1
orjson==3.7.11
pip>=21.0,<22.3
pip>=21.0,<22.4
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.3
pip_version = pip>=21.0,<22.4
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}