From 2bda086498d4f694fc900dbe183ac81acdcddcd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Tue, 14 Nov 2023 14:35:15 +0100 Subject: [PATCH] cleanup --- .github/workflows/deploy_github.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/deploy_github.yml b/.github/workflows/deploy_github.yml index dda6a94..f7a08b8 100644 --- a/.github/workflows/deploy_github.yml +++ b/.github/workflows/deploy_github.yml @@ -21,21 +21,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - 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 @@ -45,9 +30,6 @@ jobs: if: runner.os == 'macOS' working-directory: ./build-recipes run: | - # Uninstall rpy2, because it does not work on frozen macOS: - # https://github.com/DC-analysis/ChipStream/issues/73 - pip uninstall -y rpy2 bash ./macos_build_app.sh ChipStream ${{ env.RELEASE_VERSION }} - name: Build windows executable if: runner.os == 'windows'