Compare commits

...

2 commits

Author SHA1 Message Date
3dc2942066
Try using virtualenv for build action
Some checks failed
CI / Formatting (push) Successful in 39s
CI / Clippy (push) Failing after 54s
CI / Build (push) Failing after 52s
CI / Test Rust (push) Failing after 1m4s
2025-02-23 05:14:08 -05:00
67c42468cb
Revert "Use apt to install Python modules for actions"
This reverts commit 53361619b9.
2025-02-23 05:09:09 -05:00

View file

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