Revert "Use apt to install Python modules for actions"

This reverts commit 53361619b9.
This commit is contained in:
Michael Bradley 2025-02-23 05:09:09 -05:00
parent 53361619b9
commit 67c42468cb
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -42,7 +42,8 @@ jobs:
cache: pip cache: pip
- name: Set up Python environment - name: Set up Python environment
run: | run: |
apt-get install python3-pip python3-setuptools python3-wheel python3-venv curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
python3 -m venv venv python3 -m venv venv
source venv/bin/activate source venv/bin/activate
pip install -r requirements.txt pip install -r requirements.txt