We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d30d7b9 commit a0f6e25Copy full SHA for a0f6e25
.circleci/config.yml
@@ -698,7 +698,9 @@ jobs:
698
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
699
- run: # Can be removed when switching to mcr.microsoft.com/playwright:jammy
700
name: Install pip for Python 3.10
701
- command: curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
+ command: |
702
+ curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
703
+ python3.10 get-pip.py "pip < 23.0"
704
- run:
705
name: Install xmlsec1 requirements
706
command: apt-get update && apt-get install -y pkg-config libxml2-dev libxmlsec1-openssl libxmlsec1-dev
0 commit comments