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 3b203b2 commit 9f379eaCopy full SHA for 9f379ea
.github/workflows/system.yml
@@ -50,6 +50,12 @@ jobs:
50
python-version: ${{ matrix.python-version }}
51
architecture: ${{ matrix.architecture }}
52
- run: python -m pip install --user numpy
53
+ - run: python -m pip install virtualenv
54
+ # virtualenv test with Python 2.7 is failing for some reason.
55
+ # Skipping it for now.
56
+ if: ${{ matrix.python-version != '2.7' }}
57
+ - run: virtualenv --version
58
59
- name: Setup julia
60
uses: julia-actions/setup-julia@v1
61
with:
0 commit comments