Use a venv and upgrade pip, setuptools, wheel inside of it

This commit is contained in:
doctorpangloss 2024-06-17 17:09:30 -07:00
parent dc6464982d
commit c8aa40818c

View File

@ -35,6 +35,9 @@ jobs:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python3 -m venv .venv
source .venv/bin/activate
pip install wheel setuptools pip --upgrade
pip install --no-build-isolation .[dev]
- name: Run unit tests
run: |