We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54a9688 commit 84a69a2Copy full SHA for 84a69a2
1 file changed
.github/workflows/ci.yml
@@ -67,11 +67,12 @@ jobs:
67
add-apt-repository -y ppa:deadsnakes/ppa
68
apt-get update
69
apt-get install -y python${{ matrix.python-version }} python${{ matrix.python-version }}-venv python${{ matrix.python-version }}-dev
70
- python${{ matrix.python-version }} -m ensurepip --upgrade
71
- python${{ matrix.python-version }} -m pip install --upgrade pip build wheel setuptools
72
73
- name: Build wheel
74
- run: python${{ matrix.python-version }} -m build --wheel --outdir dist/
+ run: |
+ python${{ matrix.python-version }} -m venv .venv
+ .venv/bin/pip install --upgrade pip build wheel setuptools
75
+ .venv/bin/python -m build --wheel --outdir dist/
76
77
- name: Upload wheel artifact
78
uses: actions/upload-artifact@v5
0 commit comments