Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gedeck committed May 7, 2024
1 parent 07d022e commit 18c2929
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/run-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,21 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}

- name: Windows specific setup
if: matrix.os == 'windows-latest'
run: |
set BLAS=C:/Program Files/R/R-4.3.3/bin/x64Rblas.dll
set BLAS=C:/Program Files/R/R-4.3.3/bin
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}

# - name: Windows specific setup
# if: matrix.os == 'windows-latest'
# run: |
# set BLAS=C:/Program Files/R/R-4.3.3/bin/x64Rblas.dll
# set BLAS=C:/Program Files/R/R-4.3.3/bin
# - name: Install graphviz
# if: matrix.os == 'ubuntu-latest'
# run: |
Expand All @@ -54,9 +58,10 @@ jobs:

- name: Install dependencies
run: |
conda install scipy.
pip install --upgrade pip
pip install --upgrade wheel
pip install scipy
# pip install scipy
pip install -r requirements-modern.txt
cat requirements-modern.txt
Expand Down

0 comments on commit 18c2929

Please sign in to comment.