Skip to content

Commit 320affd

Browse files
Merge pull request #1119 from tidymodels/fix-miniconda-gha
increase miniconda python version
2 parents 1e7dad2 + 6f1e77f commit 320affd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
- name: Install Miniconda
6363
# conda can fail at downgrading python, so we specify python version in advance
6464
env:
65-
RETICULATE_MINICONDA_PYTHON_VERSION: "3.7"
65+
RETICULATE_MINICONDA_PYTHON_VERSION: "3.8"
6666
run: reticulate::install_miniconda() # creates r-reticulate conda env by default
6767
shell: Rscript {0}
6868

6969
- name: Install TensorFlow
7070
run: |
71-
tensorflow::install_tensorflow(version='2.7', conda_python_version = NULL)
71+
tensorflow::install_tensorflow(version='2.13', conda_python_version = NULL)
7272
shell: Rscript {0}
7373

7474
- uses: r-lib/actions/check-r-package@v2

.github/workflows/pkgdown.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
- name: Install Miniconda
3737
# conda can fail at downgrading python, so we specify python version in advance
3838
env:
39-
RETICULATE_MINICONDA_PYTHON_VERSION: "3.7"
39+
RETICULATE_MINICONDA_PYTHON_VERSION: "3.8"
4040
run: reticulate::install_miniconda() # creates r-reticulate conda env by default
4141
shell: Rscript {0}
4242

4343
- name: Install TensorFlow
4444
run: |
45-
tensorflow::install_tensorflow(version='2.7', conda_python_version = NULL)
45+
tensorflow::install_tensorflow(version='2.13', conda_python_version = NULL)
4646
shell: Rscript {0}
4747

4848
- name: Build site

.github/workflows/test-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
- name: Install Miniconda
3434
# conda can fail at downgrading python, so we specify python version in advance
3535
env:
36-
RETICULATE_MINICONDA_PYTHON_VERSION: "3.7"
36+
RETICULATE_MINICONDA_PYTHON_VERSION: "3.8"
3737
run: reticulate::install_miniconda() # creates r-reticulate conda env by default
3838
shell: Rscript {0}
3939

4040
- name: Install TensorFlow
4141
run: |
42-
tensorflow::install_tensorflow(version='2.7', conda_python_version = NULL)
42+
tensorflow::install_tensorflow(version='2.13', conda_python_version = NULL)
4343
shell: Rscript {0}
4444

4545
- name: Test coverage

0 commit comments

Comments
 (0)