From b36fcd77963d36694d68b18feced137a48cb2a7e Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Wed, 1 Oct 2025 09:05:55 -0400 Subject: [PATCH] build: Use `apt-get` instead of `apt` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f42fdd5c..852d7320 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: apt update && apt install -y software-properties-common curl && add-apt-repository ppa:deadsnakes/ppa -y && - apt install -y python$PY_VER python$PY_VER-dev python$PY_VER-venv && + apt-get update && apt-get 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 && python$PY_VER -m venv /tmp/venv && /tmp/venv/bin/pip install --upgrade pip