Skip to content

Commit

Permalink
Update testing_pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ndem0 authored Mar 6, 2025
1 parent 41bfbcf commit 7c489f1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/testing_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,24 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Setup conda
uses: s-weigand/setup-[email protected]
- name: Setup Conda
uses: conda-incubator/setup-miniconda@v3
with:
update-conda: true
auto-update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge


- name: Install Python dependencies on Linux/MacOS
if: startsWith(matrix.os, 'windows') != true
run: |
conda install --yes pythonocc-core=7.4.1
conda install --yes pythonocc-core
python3 -m pip install --upgrade pip
python3 -m pip install smithers[vtk]
python3 -m pip install .[test]
- name: Install Python dependencies on Windows
if: startsWith(matrix.os, 'windows')
run: |
conda install --yes pythonocc-core=7.4.1
conda install --yes pythonocc-core
python -m pip install --upgrade pip
python -m pip install smithers[vtk]
python -m pip install .[test]
Expand Down

0 comments on commit 7c489f1

Please sign in to comment.