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 c080c28 commit 645c0ecCopy full SHA for 645c0ec
.github/workflows/testing_pr.yml
@@ -28,13 +28,13 @@ jobs:
28
uses: conda-incubator/setup-miniconda@v3
29
with:
30
channels: conda-forge, defaults
31
- python-version: ${{ matrix.python-version }}
32
- activate-environment: occ
+ activate-environment: ""
33
34
- name: Install Python dependencies on Linux/MacOS
35
if: startsWith(matrix.os, 'windows') != true
36
run: |
37
- conda install --yes pythonocc-core
+ conda create -n occ python=${{ matrix.python-version }} pythonocc-core
+ conda activate occ
38
python -m pip install --upgrade pip
39
python -m pip install smithers[vtk]
40
python -m pip install .[test]
0 commit comments