Skip to content

Commit 530c55a

Browse files
authored
MNT - Fix R installation in CI (#310)
1 parent 8e27664 commit 530c55a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ jobs:
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: "3.10"
20+
- name: Set up R
21+
uses: r-lib/actions/setup-r@v2
2022
- name: Install package and testing tools
2123
run: |
2224
python -m pip install --upgrade pip
2325
pip install .
2426
pip install .[test]
27+
python --version
2528
- name: Install other dependencies
2629
run: |
27-
conda install rpy2 -c conda-forge
30+
pip install rpy2
2831
pip install statsmodels cvxopt
2932
pip install sortedl1
3033
# for testing Cox estimator

0 commit comments

Comments
 (0)