From 872c7d3cc6c995ec660d6db3cdc929887f0ea0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Fri, 22 Mar 2024 10:15:30 +0100 Subject: [PATCH] ci: install lme4 from http://cran-archive.r-project.org --- .github/workflows/check.yml | 3 +-- .github/workflows/deploy_github.yml | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 79563c1..b5d45f0 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -45,8 +45,7 @@ jobs: if: runner.os == 'Windows' shell: bash run: | - # R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')" - R -e "install.packages('http://cran.rstudio.org/bin/windows/contrib/r-old-release/lme4_1.1-35.1.zip', repos=NULL, type='binary')" + R -e "install.packages('lme4', repos='http://cran-archive.r-project.org', type='binary')" - name: Install Python dependencies run: | # prerequisites diff --git a/.github/workflows/deploy_github.yml b/.github/workflows/deploy_github.yml index 4a43f20..079ef0f 100644 --- a/.github/workflows/deploy_github.yml +++ b/.github/workflows/deploy_github.yml @@ -34,12 +34,6 @@ jobs: # 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')" - R -e "install.packages('http://cran.rstudio.org/bin/windows/contrib/r-old-release/lme4_1.1-35.1.zip', repos=NULL, type='binary')" - name: Install Python dependencies run: | python -m pip install --upgrade pip