Skip to content

Commit

Permalink
Update pip version range to 22.3 (home-assistant#75572)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p authored Jul 24, 2022
1 parent e18819c commit c0e6852
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit c0e6852

Please sign in to comment.