Skip to content

Commit

Permalink
ci: fix build scipts
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 7, 2023
1 parent 8c99120 commit 9059c35
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/deploy_github.yml
Expand Up @@ -21,7 +21,22 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: install R
uses: r-lib/actions/setup-r@v2
with:
r-version: '3.6.3'
- name: Downgrade rpy2 (Windows)
if: runner.os == 'Windows'
run: |
# Force installation of rpy2 3.5.12
# https://github.com/rpy2/rpy2/issues/1044
python -m pip install rpy2==3.5.12
- name: install lme4 (Windows)
if: runner.os == 'Windows'
shell: bash
run: |
R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
Expand Down

0 comments on commit 9059c35

Please sign in to comment.