From 564e618d0c9c34aef85052959886f80a5770df24 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 18 Jul 2023 00:37:02 +0200 Subject: [PATCH] Drop upper constraint for pip (#96738) --- .github/workflows/ci.yaml | 2 +- homeassistant/package_constraints.txt | 2 +- pyproject.toml | 2 +- requirements.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8fd01ada0e9..da7d73c272d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -492,7 +492,7 @@ jobs: python -m venv venv . venv/bin/activate python --version - pip install --cache-dir=$PIP_CACHE -U "pip>=21.3.1,<23.3" setuptools wheel + pip install --cache-dir=$PIP_CACHE -U "pip>=21.3.1" setuptools wheel pip install --cache-dir=$PIP_CACHE -r requirements_all.txt pip install --cache-dir=$PIP_CACHE -r requirements_test.txt pip install -e . --config-settings editable_mode=compat diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index fca6e2fcb25..03c472d106a 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -33,7 +33,7 @@ mutagen==1.46.0 orjson==3.9.2 paho-mqtt==1.6.1 Pillow==10.0.0 -pip>=21.3.1,<23.3 +pip>=21.3.1 psutil-home-assistant==0.0.1 PyJWT==2.7.0 PyNaCl==1.5.0 diff --git a/pyproject.toml b/pyproject.toml index 5ed5ad53224..6f1f3d9a351 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ dependencies = [ # pyOpenSSL 23.2.0 is required to work with cryptography 41+ "pyOpenSSL==23.2.0", "orjson==3.9.2", - "pip>=21.3.1,<23.3", + "pip>=21.3.1", "python-slugify==4.0.1", "PyYAML==6.0", "requests==2.31.0", diff --git a/requirements.txt b/requirements.txt index 8de97cb6156..8f55e68cd3c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,7 +19,7 @@ PyJWT==2.7.0 cryptography==41.0.2 pyOpenSSL==23.2.0 orjson==3.9.2 -pip>=21.3.1,<23.3 +pip>=21.3.1 python-slugify==4.0.1 PyYAML==6.0 requests==2.31.0