We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f491a8b commit 1d5a344Copy full SHA for 1d5a344
1 file changed
.github/workflows/test-ubuntu-arm-no-container.yaml
@@ -22,10 +22,18 @@ jobs:
22
run: |
23
sudo apt-get update -y
24
sudo apt-get install -y --no-install-recommends \
25
+ software-properties-common \
26
+ python3.11 python3.11-distutils python3.11-venv python3.11-dev \
27
libgirepository-1.0-1 \
28
libgirepository1.0-dev \
29
libglib2.0-dev \
30
libglib2.0-dev-bin
31
+
32
+ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 2
33
+ sudo update-alternatives --set python3 /usr/bin/python3.11
34
35
+ curl -sS https://bootstrap.pypa.io/get-pip.py | sudo python3.11 -
36
+ sudo python3.11 -m pip install --upgrade pip setuptools wheel pip-tools
37
38
- name: Mark repo as safe
39
shell: bash
0 commit comments