Skip to content

Commit f990c3d

Browse files
update workflow 5
1 parent 7b8628c commit f990c3d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/python-publish.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,23 @@ jobs:
1919
- name: Install system build dependencies
2020
run: |
2121
apt-get update
22-
apt-get install -y python3-pip python3-dev build-essential libbz2-dev liblzma-dev libpcre2-dev
22+
apt-get install -y python3-pip python3-dev build-essential libbz2-dev liblzma-dev libpcre2-dev libicu-dev libtiff5
23+
24+
- name: Install Python dependencies
25+
run: |
26+
python3 -m pip install --upgrade pip
27+
pip3 install wheel setuptools twine rpy2
2328
2429
- name: Install R ahead package
2530
run: |
2631
Rscript -e "options(repos = c(techtonique = 'https://r-packages.techtonique.net', CRAN = 'https://cloud.r-project.org')); utils::install.packages('ahead', dependencies=TRUE)"
2732
33+
- name: Debug R install
34+
run: |
35+
Rscript -e 'sessionInfo()'
36+
ls -l /usr/local/lib/R/library/
37+
ls -l /usr/local/lib/R/library/methods/libs/
38+
2839
- name: Build distribution
2940
run: python3 setup.py sdist bdist_wheel
3041

0 commit comments

Comments
 (0)