Update pip version range to 22.3 (#75572)
This commit is contained in:
parent
e18819c678
commit
c0e6852077
5 changed files with 5 additions and 5 deletions
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
@ -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 .
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue