Skip to content

Commit 2a62d43

Browse files
authored
Refactor conda install commands in testing workflow
Removed anaconda channel from conda install command and updated the install command for pythonocc-core.
1 parent 6e890fa commit 2a62d43

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/testing_pr.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
branches:
66
- "master"
77

8-
9-
10-
118
jobs:
129
build:
1310
runs-on: ${{ matrix.os }}
@@ -26,14 +23,13 @@ jobs:
2623
with:
2724
auto-update-conda: true
2825
python-version: ${{ matrix.python-version }}
29-
channels: anaconda, conda-forge
26+
channels: conda-forge
3027

3128
- name: Installing packages
3229
shell: bash -el {0}
3330
run: |
34-
conda install --yes -c conda-forge -c anaconda pythonocc-core=7.4.0
31+
conda install --yes -c conda-forge pythonocc-core=7.4.0
3532
python -m pip install --upgrade pip
36-
python -m pip install smithers[vtk]
3733
python -m pip install .[test]
3834
3935
- name: Test with pytest

0 commit comments

Comments
 (0)