Skip to content

Commit 3fb5c3c

Browse files
committed
try pip < 25
1 parent 42dc320 commit 3fb5c3c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ jobs:
4949
name: 🏁 Build Component Packages & Update Dependencies/Artifacts
5050
command: |
5151
python -m venv venv && . venv/bin/activate
52-
pip install --upgrade pip wheel setuptools
52+
pip install "pip<25.0"
53+
pip install --upgrade wheel setuptools
5354
set -eo pipefail
5455
pip install -e .[ci,dev,testing,celery,diskcache] --progress-bar off
5556
pip list | grep dash
@@ -213,6 +214,7 @@ jobs:
213214
name: ️️🏗️ Install package
214215
command: |
215216
. venv/bin/activate
217+
pip install "pip<25"
216218
npm ci
217219
pip install dash-package/dash-package.tar.gz[ci,dev,testing,celery,diskcache] --progress-bar off
218220
pip list

0 commit comments

Comments
 (0)