We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1267eeb commit 50bff71Copy full SHA for 50bff71
1 file changed
.github/workflows/ci.yml
@@ -344,8 +344,10 @@ jobs:
344
345
- name: Setup virtualenv
346
run: |
347
- virtualenv venv
+ virtualenv venv -p python${PYTHON_VERSION}
348
./venv/bin/pip install build
349
+ env:
350
+ PYTHON_VERSION: ${{ matrix.python }}
351
352
- name: Install package dependencies (develop)
353
@@ -357,8 +359,8 @@ jobs:
357
359
358
360
- name: Install package dependencies (release)
361
- ./venv/bin/python -m build --sdist
362
./venv/bin/pip install cmake
363
+ ./venv/bin/python -m build --sdist
364
shell: bash
365
if: ${{ matrix.deps == 'release' }}
366
0 commit comments