We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee4697 commit 4077eafCopy full SHA for 4077eaf
1 file changed
.github/workflows/ci.yml
@@ -32,10 +32,10 @@ jobs:
32
apt update &&
33
apt install -y software-properties-common curl &&
34
add-apt-repository ppa:deadsnakes/ppa -y &&
35
- apt install -y python${PY_VER} python${PY_VER}-dev python${PY_VER}-venv &&
36
- update-alternatives --install /usr/bin/python3 python3 /usr/bin/python${PY_VER} 1 &&
37
- python3 -m ensurepip &&
38
- python3 -m pip install --upgrade pip
+ apt install -y python$PY_VER python$PY_VER-dev python$PY_VER-venv &&
+ update-alternatives --install /usr/bin/python3 python3 /usr/bin/python$PY_VER 1 &&
+ python3 -m venv /tmp/venv &&
+ /tmp/venv/bin/pip install --upgrade pip
39
"
40
docker exec xqueue bash -c "python3 --version && which python3"
41
0 commit comments