Skip to content

Commit

Permalink
Update pip constraint to allow for pip 23.1 (#91535)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Apr 17, 2023
1 parent d1b8f29 commit f1bb4ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ jobs:
python -m venv venv
. venv/bin/activate
python --version
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<23.1" setuptools wheel
pip install --cache-dir=$PIP_CACHE -U "pip>=21.0,<23.2" 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 @@ -35,7 +35,7 @@ lru-dict==1.1.8
orjson==3.8.10
paho-mqtt==1.6.1
pillow==9.5.0
pip>=21.0,<23.1
pip>=21.0,<23.2
psutil-home-assistant==0.0.1
pyOpenSSL==23.1.0
pyserial==3.5
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies = [
# pyOpenSSL 23.1.0 is required to work with cryptography 39+
"pyOpenSSL==23.1.0",
"orjson==3.8.10",
"pip>=21.0,<23.1",
"pip>=21.0,<23.2",
"python-slugify==4.0.1",
"pyyaml==6.0",
"requests==2.28.2",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ PyJWT==2.6.0
cryptography==40.0.1
pyOpenSSL==23.1.0
orjson==3.8.10
pip>=21.0,<23.1
pip>=21.0,<23.2
python-slugify==4.0.1
pyyaml==6.0
requests==2.28.2
Expand Down

0 comments on commit f1bb4ed

Please sign in to comment.