Skip to content

Commit 2975dac

Browse files
author
Martin Urban
committed
Update github action to use venv
1 parent 91f8474 commit 2975dac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_wheel.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v4
@@ -22,9 +22,9 @@ jobs:
2222

2323
- name: Install dependencies
2424
run: |
25-
python -m pip install --upgrade pip
26-
pip install wheel setuptools
27-
pip install -r requirements.txt
25+
python -m venv .venv
26+
./.venv/bin/pip install wheel setuptools
27+
./.venv/bin/pip install -r requirements.txt
2828
./run_automation.sh setup-dev-env
2929
3030
- name: Build wheel

0 commit comments

Comments
 (0)