Skip to content

Commit dbb2c23

Browse files
committed
💚(e2e) fix e2e pip installation
Last pip version introduces a bug with ubuntu 20 See pypa/pip#11770 So we decided to pin pip to version < 23.0
1 parent d30d7b9 commit dbb2c23

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
@@ -698,7 +698,9 @@ jobs:
698698
command: apt update && apt upgrade -y && apt install -y software-properties-common && add-apt-repository -y 'ppa:deadsnakes/ppa' && apt install -y python3.10 python3.10-dev build-essential
699699
- run: # Can be removed when switching to mcr.microsoft.com/playwright:jammy
700700
name: Install pip for Python 3.10
701-
command: curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
701+
command: |
702+
curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
703+
python3.10 get-pip.py "pip < 23.0"
702704
- run:
703705
name: Install xmlsec1 requirements
704706
command: apt-get update && apt-get install -y pkg-config libxml2-dev libxmlsec1-openssl libxmlsec1-dev

0 commit comments

Comments
 (0)